2016-06-15 16:38:02 +00:00
|
|
|
logger = require("logger-sharelatex")
|
2016-02-05 14:13:38 +00:00
|
|
|
NotificationsHandler = require("./NotificationsHandler")
|
|
|
|
|
|
|
|
module.exports =
|
|
|
|
|
|
|
|
groupPlan: (user, licence)->
|
|
|
|
key : "join-sub-#{licence.subscription_id}"
|
|
|
|
create: (callback = ->)->
|
|
|
|
messageOpts =
|
|
|
|
groupName: licence.name
|
|
|
|
subscription_id: licence.subscription_id
|
2016-06-15 16:38:02 +00:00
|
|
|
logger.log user_id:user._id, key:key, "creating notification key for user"
|
2016-02-17 16:24:09 +00:00
|
|
|
NotificationsHandler.createNotification user._id, @key, "notification_group_invite", messageOpts, callback
|
2016-02-05 14:13:38 +00:00
|
|
|
|
|
|
|
read: (callback = ->)->
|
2016-02-17 16:24:09 +00:00
|
|
|
NotificationsHandler.markAsReadWithKey user._id, @key, callback
|