From d78a2f41553afb58ba313b2530b1dd582db9d18f Mon Sep 17 00:00:00 2001 From: chris48s Date: Sat, 8 Oct 2022 11:37:05 +0100 Subject: [PATCH] allow/validate bitbucket_username / bitbucket_password in private config schema (#8472) Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com> --- core/server/server.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/server/server.js b/core/server/server.js index 962f7be79c623..75c9e176bfb8c 100644 --- a/core/server/server.js +++ b/core/server/server.js @@ -169,6 +169,8 @@ const privateConfigSchema = Joi.object({ jenkins_pass: Joi.string(), jira_user: Joi.string(), jira_pass: Joi.string(), + bitbucket_username: Joi.string(), + bitbucket_password: Joi.string(), bitbucket_server_username: Joi.string(), bitbucket_server_password: Joi.string(), librariesio_tokens: Joi.arrayFromString().items(Joi.string()),