2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-28 12:25:02 -05:00
|
|
|
# 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-08-31 15:57:00 -04:00
|
|
|
OWN_ACTIVITY = 'own_activity'
|
|
|
|
ASSIGNED = 'assigned'
|
|
|
|
MENTIONED = 'mentioned'
|
2019-11-05 07:06:20 -05:00
|
|
|
SUBSCRIBED = 'subscribed'
|
2017-12-28 12:25:02 -05:00
|
|
|
|
|
|
|
# Priority list for selecting which reason to return in the notification
|
|
|
|
REASON_PRIORITY = [
|
|
|
|
OWN_ACTIVITY,
|
|
|
|
ASSIGNED,
|
2019-11-05 07:06:20 -05:00
|
|
|
MENTIONED,
|
|
|
|
SUBSCRIBED
|
2017-12-28 12:25:02 -05:00
|
|
|
].freeze
|
|
|
|
|
|
|
|
# returns the priority of a reason as an integer
|
|
|
|
def self.priority(reason)
|
|
|
|
REASON_PRIORITY.index(reason) || REASON_PRIORITY.length + 1
|
|
|
|
end
|
|
|
|
end
|