summaryrefslogtreecommitdiff
path: root/lib/feature/shared.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-12-17 11:59:07 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-12-17 11:59:07 +0000
commit8b573c94895dc0ac0e1d9d59cf3e8745e8b539ca (patch)
tree544930fb309b30317ae9797a9683768705d664c4 /lib/feature/shared.rb
parent4b1de649d0168371549608993deac953eb692019 (diff)
downloadgitlab-ce-8b573c94895dc0ac0e1d9d59cf3e8745e8b539ca.tar.gz
Add latest changes from gitlab-org/gitlab@13-7-stable-eev13.7.0-rc42
Diffstat (limited to 'lib/feature/shared.rb')
-rw-r--r--lib/feature/shared.rb16
1 files changed, 13 insertions, 3 deletions
diff --git a/lib/feature/shared.rb b/lib/feature/shared.rb
index 1fcbc8fa173..17dfe26bd82 100644
--- a/lib/feature/shared.rb
+++ b/lib/feature/shared.rb
@@ -23,7 +23,7 @@ class Feature
example: <<-EOS
Feature.enabled?(:my_feature_flag, project)
Feature.enabled?(:my_feature_flag, project, type: :development)
- push_frontend_feature_flag?(:my_feature_flag, project)
+ push_frontend_feature_flag(:my_feature_flag, project)
EOS
},
ops: {
@@ -33,8 +33,8 @@ class Feature
ee_only: false,
default_enabled: false,
example: <<-EOS
- Feature.enabled?(:my_ops_flag, type: ops)
- push_frontend_feature_flag?(:my_ops_flag, project, type: :ops)
+ Feature.enabled?(:my_ops_flag, type: :ops)
+ push_frontend_feature_flag(:my_ops_flag, project, type: :ops)
EOS
},
licensed: {
@@ -48,6 +48,16 @@ class Feature
project.feature_available?(:my_licensed_feature)
namespace.feature_available?(:my_licensed_feature)
EOS
+ },
+ experiment: {
+ description: 'Short lived, used specifically to run A/B/n experiments.',
+ optional: true,
+ rollout_issue: true,
+ ee_only: true,
+ default_enabled: false,
+ example: <<-EOS
+ experiment(:my_experiment, project: project, actor: current_user) { ...variant code... }
+ EOS
}
}.freeze