Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-04-04 21:08:38 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-04-04 21:08:38 +0300
commit6d05fbc4786dc542544ed08324fdd938073a1917 (patch)
tree33dce7da5a78ab994864567b7570b761a15f1016 /app/controllers/concerns/integrations
parentcad0cc33957b0ea82afb34836e42419bea5a99b9 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/controllers/concerns/integrations')
-rw-r--r--app/controllers/concerns/integrations/params.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/concerns/integrations/params.rb b/app/controllers/concerns/integrations/params.rb
index 80acb369cb2..d256b331174 100644
--- a/app/controllers/concerns/integrations/params.rb
+++ b/app/controllers/concerns/integrations/params.rb
@@ -89,7 +89,7 @@ module Integrations
param_values = return_value[:integration]
if param_values.is_a?(ActionController::Parameters)
- integration.password_fields.each do |param|
+ integration.secret_fields.each do |param|
param_values.delete(param) if param_values[param].blank?
end
end