summaryrefslogtreecommitdiff
path: root/app/helpers/ci_variables_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/ci_variables_helper.rb')
-rw-r--r--app/helpers/ci_variables_helper.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/helpers/ci_variables_helper.rb b/app/helpers/ci_variables_helper.rb
index e3728804c2a..88ce311a1d4 100644
--- a/app/helpers/ci_variables_helper.rb
+++ b/app/helpers/ci_variables_helper.rb
@@ -12,4 +12,12 @@ module CiVariablesHelper
ci_variable_protected_by_default?
end
end
+
+ def ci_variable_masked?(variable, only_key_value)
+ if variable && !only_key_value
+ variable.masked
+ else
+ true
+ end
+ end
end