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

user_type_enums.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb5aac89ed3fb8da5268d9d495b98391a79d684e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module UserTypeEnums
  def self.types
    @types ||= bots.merge(human: nil, ghost: 5)
  end

  def self.bots
    @bots ||= { alert_bot: 2, project_bot: 6 }.with_indifferent_access
  end
end

UserTypeEnums.prepend_if_ee('EE::UserTypeEnums')