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:
Diffstat (limited to 'lib/gitlab/experimentation/group_types.rb')
-rw-r--r--lib/gitlab/experimentation/group_types.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/gitlab/experimentation/group_types.rb b/lib/gitlab/experimentation/group_types.rb
new file mode 100644
index 00000000000..8e8f7284b99
--- /dev/null
+++ b/lib/gitlab/experimentation/group_types.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Experimentation
+ module GroupTypes
+ GROUP_CONTROL = :control
+ GROUP_EXPERIMENTAL = :experimental
+ end
+ end
+end