summaryrefslogtreecommitdiff
path: root/app/models/user_bot_type_enums.rb
blob: e4b1751b07247b700f6ea96327b7017f33d52249 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module UserBotTypeEnums
  def self.bots
    # When adding a new key, please ensure you are not conflicting with EE-only keys in app/models/user_bot_type_enums.rb
    {
      alert_bot: 2
    }
  end
end

UserBotTypeEnums.prepend_if_ee('EE::UserBotTypeEnums')