debian-mirror-gitlab/app/models/user_bot_type_enums.rb
2020-03-13 15:44:24 +05:30

13 lines
291 B
Ruby

# 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_types_enums.rb
{
alert_bot: 2
}
end
end
UserBotTypeEnums.prepend_if_ee('EE::UserBotTypeEnums')