Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_types.rb « experimentation « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e8f7284b9974abaaab6d5ef2493f682a26fefce (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Gitlab
  module Experimentation
    module GroupTypes
      GROUP_CONTROL = :control
      GROUP_EXPERIMENTAL = :experimental
    end
  end
end