2017-10-30 13:12:10 +00:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
2018-03-29 11:32:18 +00:00
|
|
|
import Notification from '../../../../models/notification';
|
2018-03-31 10:55:00 +00:00
|
|
|
import event from '../../../../common/event';
|
2017-10-30 13:12:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Mark as read all notifications
|
|
|
|
*
|
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
module.exports = (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Update documents
|
|
|
|
await Notification.update({
|
2018-03-29 05:48:47 +00:00
|
|
|
notifieeId: user._id,
|
|
|
|
isRead: false
|
2017-10-30 13:12:10 +00:00
|
|
|
}, {
|
|
|
|
$set: {
|
2018-03-29 05:48:47 +00:00
|
|
|
isRead: true
|
2017-10-30 13:12:10 +00:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
multi: true
|
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
|
|
|
res();
|
|
|
|
|
|
|
|
// 全ての通知を読みましたよというイベントを発行
|
|
|
|
event(user._id, 'read_all_notifications');
|
|
|
|
});
|