summaryrefslogtreecommitdiff
path: root/lib/feature/shared.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/feature/shared.rb')
-rw-r--r--lib/feature/shared.rb12
1 files changed, 10 insertions, 2 deletions
diff --git a/lib/feature/shared.rb b/lib/feature/shared.rb
index 2ce078b2f02..40f21fc4f50 100644
--- a/lib/feature/shared.rb
+++ b/lib/feature/shared.rb
@@ -28,8 +28,8 @@ class Feature
},
ops: {
description: "Long-lived feature flags that control operational aspects of GitLab's behavior",
- optional: true,
- rollout_issue: false,
+ optional: false,
+ rollout_issue: true,
ee_only: false,
default_enabled: false,
example: <<-EOS
@@ -37,6 +37,14 @@ class Feature
push_frontend_feature_flag(:my_ops_flag, project, type: :ops)
EOS
},
+ undefined: {
+ description: "Feature flags that are undefined in GitLab codebase (should not be used)",
+ optional: true,
+ rollout_issue: false,
+ ee_only: false,
+ default_enabled: false,
+ example: ''
+ },
experiment: {
description: 'Short lived, used specifically to run A/B/n experiments.',
optional: true,