summaryrefslogtreecommitdiff
path: root/app/models/ci/group_variable.rb
diff options
context:
space:
mode:
authorMatija Čupić <matteeyah@gmail.com>2019-02-26 14:03:42 +0000
committerKamil Trzciński <ayufan@ayufan.eu>2019-02-26 14:03:42 +0000
commitc9125c4786970fc3c3745c7ea7bff45ef7a62e7d (patch)
tree38bd564113590665646b974dcbdf91f51b3a4b88 /app/models/ci/group_variable.rb
parentc1d8f8a41042ac7abb2916206e8a411e82af442e (diff)
downloadgitlab-ce-c9125c4786970fc3c3745c7ea7bff45ef7a62e7d.tar.gz
Add Maskable concern for CI variables
This adds a concern that abstracts the concept of masking a variable, including the RegEx for validation.
Diffstat (limited to 'app/models/ci/group_variable.rb')
-rw-r--r--app/models/ci/group_variable.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/ci/group_variable.rb b/app/models/ci/group_variable.rb
index 492d1d0329e..323ff560564 100644
--- a/app/models/ci/group_variable.rb
+++ b/app/models/ci/group_variable.rb
@@ -5,6 +5,7 @@ module Ci
extend Gitlab::Ci::Model
include HasVariable
include Presentable
+ include Maskable
belongs_to :group, class_name: "::Group"