DEV: Add chat_group_mention notification type (#15616)
This commit is contained in:
parent
bcc148556f
commit
fcc80137ce
|
@ -33,4 +33,6 @@ export const NOTIFICATION_TYPES = {
|
|||
event_invitation: 28,
|
||||
chat_mention: 29,
|
||||
chat_message: 30,
|
||||
chat_invitation: 31,
|
||||
chat_group_mention: 32,
|
||||
};
|
||||
|
|
|
@ -108,7 +108,8 @@ class Notification < ActiveRecord::Base
|
|||
event_invitation: 28,
|
||||
chat_mention: 29,
|
||||
chat_message: 30,
|
||||
chat_invitation: 31
|
||||
chat_invitation: 31,
|
||||
chat_group_mention: 32
|
||||
)
|
||||
end
|
||||
|
||||
|
|
|
@ -100,6 +100,9 @@
|
|||
},
|
||||
"chat_invitation": {
|
||||
"type": "integer"
|
||||
},
|
||||
"chat_group_mention": {
|
||||
"type": "integer"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
|
@ -131,7 +134,10 @@
|
|||
"votes_released",
|
||||
"event_reminder",
|
||||
"event_invitation",
|
||||
"chat_mention"
|
||||
"chat_mention",
|
||||
"chat_message",
|
||||
"chat_invitation",
|
||||
"chat_group_mention"
|
||||
]
|
||||
},
|
||||
"post_types": {
|
||||
|
|
Loading…
Reference in New Issue