| 123456789101112131415161718192021 |
- NotificationsHandler = require("./NotificationsHandler")
- AuthenticationController = require("../Authentication/AuthenticationController")
- logger = require("logger-sharelatex")
- _ = require("underscore")
- module.exports =
- getAllUnreadNotifications: (req, res)->
- user_id = AuthenticationController.getLoggedInUserId(req)
- NotificationsHandler.getUserNotifications user_id, (err, unreadNotifications)->
- unreadNotifications = _.map unreadNotifications, (notification)->
- notification.html = req.i18n.translate(notification.templateKey, notification.messageOpts)
- return notification
- res.send(unreadNotifications)
- markNotificationAsRead: (req, res)->
- user_id = AuthenticationController.getLoggedInUserId(req)
- notification_id = req.params.notification_id
- NotificationsHandler.markAsRead user_id, notification_id, ->
- res.send()
- logger.log user_id:user_id, notification_id:notification_id, "mark notification as read"
|