summaryrefslogtreecommitdiff
path: root/app/helpers
diff options
context:
space:
mode:
authormfluharty <mfluharty@gitlab.com>2019-05-07 13:37:29 -0600
committermfluharty <mfluharty@gitlab.com>2019-06-04 14:09:01 +0100
commit598fa4cdd8e698d4ed19ad6101989aa286c9131c (patch)
tree8cb38abd21ba624dde4057b4227f2e1284821ccc /app/helpers
parentd16c11ab36d91fc51a01406fa77ee2bf307ad8f5 (diff)
downloadgitlab-ce-598fa4cdd8e698d4ed19ad6101989aa286c9131c.tar.gz
Default masked to false for new variables11204-turn-off-mask-by-default
Set the default value to false Adjust tests to expect false as the default Update documentation to make new default clear
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/ci_variables_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/ci_variables_helper.rb b/app/helpers/ci_variables_helper.rb
index 5bfdeb9e33c..e313015c937 100644
--- a/app/helpers/ci_variables_helper.rb
+++ b/app/helpers/ci_variables_helper.rb
@@ -17,7 +17,7 @@ module CiVariablesHelper
if variable && !only_key_value
variable.masked
else
- true
+ false
end
end