mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
19 lines
786 B
CoffeeScript
19 lines
786 B
CoffeeScript
Notifications = require("./Notifications")
|
|
logger = require("logger-sharelatex")
|
|
|
|
module.exports =
|
|
|
|
getUserNotifications: (req, res)->
|
|
logger.log user_id: req.params.user_id, "getting user unread notifications"
|
|
Notifications.getUserUnreadNotifications 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"
|
|
Notifications.addNotification req.params.user_id, req.body, (err, notifications)->
|
|
res.send()
|
|
|
|
removeNotificacion: (req, res)->
|
|
logger.log user_id: req.params.user_id, notification_key:req.params.key "removing notification"
|
|
Notifications.removeNotification req.params.user_id, req.params.key, (err, notifications)->
|
|
res.send()
|