debian-mirror-gitlab/app/models/notification_reason.rb

24 lines
618 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
# Holds reasons for a notification to have been sent as well as a priority list to select which reason to use
# above the rest
class NotificationReason
2019-12-04 20:38:33 +05:30
OWN_ACTIVITY = 'own_activity'
ASSIGNED = 'assigned'
MENTIONED = 'mentioned'
2019-12-26 22:10:19 +05:30
SUBSCRIBED = 'subscribed'
2018-03-17 18:26:18 +05:30
# Priority list for selecting which reason to return in the notification
REASON_PRIORITY = [
OWN_ACTIVITY,
ASSIGNED,
2019-12-26 22:10:19 +05:30
MENTIONED,
SUBSCRIBED
2018-03-17 18:26:18 +05:30
].freeze
# returns the priority of a reason as an integer
def self.priority(reason)
REASON_PRIORITY.index(reason) || REASON_PRIORITY.length + 1
end
end