overleaf/services/notifications/app/coffee/NotificationsController.coffee
Henrique Santos 2c81b978cf make it works
2016-01-14 18:42:48 -02:00

22 lines
842 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.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"
Notifications.addNotification req.params.user_id, req.body, (err, notifications)->
if err?
res.send 500
else
res.send()
removeNotification: (req, res)->
logger.log user_id: req.params.user_id, notification_id: req.params.notification_id, "removing notification"
Notifications.removeNotification req.params.user_id, req.params.notification_id, (err, notifications)->
res.send()