mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
32 lines
1.3 KiB
CoffeeScript
32 lines
1.3 KiB
CoffeeScript
Notifications = require("./Notifications")
|
|
logger = require("logger-sharelatex")
|
|
metrics = require('metrics-sharelatex')
|
|
|
|
module.exports =
|
|
|
|
getUserNotifications: (req, res)->
|
|
logger.log user_id: req.params.user_id, "getting user unread notifications"
|
|
metrics.inc "getUserNotifications"
|
|
Notifications.getUserNotifications req.params.user_id, (err, notifications)->
|
|
res.json(notifications)
|
|
|
|
addNotification: (req, res)->
|
|
logger.log user_id: req.params.user_id, notification:req.body, "adding notification"
|
|
metrics.inc "addNotification"
|
|
Notifications.addNotification req.params.user_id, req.body, (err, notifications)->
|
|
if err?
|
|
res.send 500
|
|
else
|
|
res.send()
|
|
|
|
removeNotificationId: (req, res)->
|
|
logger.log user_id: req.params.user_id, notification_id: req.params.notification_id, "mark id notification as read"
|
|
metrics.inc "removeNotificationId"
|
|
Notifications.removeNotificationId req.params.user_id, req.params.notification_id, (err, notifications)->
|
|
res.send()
|
|
|
|
removeNotificationKey: (req, res)->
|
|
logger.log user_id: req.params.user_id, notification_key: req.body.key, "mark key notification as read"
|
|
metrics.inc "removeNotificationKey"
|
|
Notifications.removeNotificationKey req.params.user_id, req.body.key, (err, notifications)->
|
|
res.send()
|