gitlab-org--gitlab-foss/lib/gitlab/experimentation/group_types.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
182 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Experimentation
module GroupTypes
GROUP_CONTROL = :control
GROUP_EXPERIMENTAL = :experimental
end
end
end