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:
authorMiranda Fluharty <mfluharty@gitlab.com>2019-03-27 22:13:55 +0300
committerKamil TrzciƄski <ayufan@ayufan.eu>2019-03-27 22:13:55 +0300
commitfc8f4b62f887abbc02e2c21b7275f53b51a5bad2 (patch)
tree3644afa753f4fe855302342bc7f2e56bf17f80e3 /app/controllers/projects/variables_controller.rb
parent95325c6ab7343f5c241fe63b3e0e782372e93245 (diff)
Scaffold UI elements for minimal version
Add a masked switch to variable rows Copy some behavior from the protected switch
Diffstat (limited to 'app/controllers/projects/variables_controller.rb')
-rw-r--r--app/controllers/projects/variables_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/variables_controller.rb b/app/controllers/projects/variables_controller.rb
index bb658bfcc19..05a79d59ffd 100644
--- a/app/controllers/projects/variables_controller.rb
+++ b/app/controllers/projects/variables_controller.rb
@@ -38,6 +38,6 @@ class Projects::VariablesController < Projects::ApplicationController
end
def variable_params_attributes
- %i[id key secret_value protected _destroy]
+ %i[id key secret_value protected masked _destroy]
end
end