diff options
author | mfluharty <mfluharty@gitlab.com> | 2019-05-07 13:37:29 -0600 |
---|---|---|
committer | mfluharty <mfluharty@gitlab.com> | 2019-06-04 14:09:01 +0100 |
commit | 598fa4cdd8e698d4ed19ad6101989aa286c9131c (patch) | |
tree | 8cb38abd21ba624dde4057b4227f2e1284821ccc /app/helpers | |
parent | d16c11ab36d91fc51a01406fa77ee2bf307ad8f5 (diff) | |
download | gitlab-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.rb | 2 |
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 |