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:
authorAlexis Reigel <alexis.reigel.ext@siemens.com>2018-12-04 16:40:47 +0300
committerAlexis Reigel <alexis.reigel.ext@siemens.com>2018-12-04 18:35:04 +0300
commita648bcad7bb7fcf24c0be81abf273da8d0bbf410 (patch)
treed36d3a9b798815def15fa014a8df3a580c56d82d /app/views/ci
parentccecf436abdca602e703e09f1017f4376263c1d9 (diff)
extract protected variable logic to helper
Diffstat (limited to 'app/views/ci')
-rw-r--r--app/views/ci/variables/_variable_row.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/ci/variables/_variable_row.html.haml b/app/views/ci/variables/_variable_row.html.haml
index 151a329228e..16a7527c8ce 100644
--- a/app/views/ci/variables/_variable_row.html.haml
+++ b/app/views/ci/variables/_variable_row.html.haml
@@ -5,8 +5,8 @@
- id = variable&.id
- key = variable&.key
- value = variable&.value
-- is_protected_default = Gitlab::CurrentSettings.current_application_settings.protected_ci_variables
-- is_protected = variable && !only_key_value ? variable.protected : is_protected_default
+- is_protected_default = ci_variable_protected_by_default?
+- is_protected = ci_variable_protected?(variable, only_key_value)
- id_input_name = "#{form_field}[variables_attributes][][id]"
- destroy_input_name = "#{form_field}[variables_attributes][][_destroy]"