mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-19 00:17:35 -07:00
33 lines
599 B
TypeScript
33 lines
599 B
TypeScript
|
/**
|
||
|
* Module dependencies
|
||
|
*/
|
||
|
import Notification from '../../models/notification';
|
||
|
import event from '../../event';
|
||
|
|
||
|
/**
|
||
|
* 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({
|
||
|
notifiee_id: user._id,
|
||
|
is_read: false
|
||
|
}, {
|
||
|
$set: {
|
||
|
is_read: true
|
||
|
}
|
||
|
}, {
|
||
|
multi: true
|
||
|
});
|
||
|
|
||
|
// Response
|
||
|
res();
|
||
|
|
||
|
// 全ての通知を読みましたよというイベントを発行
|
||
|
event(user._id, 'read_all_notifications');
|
||
|
});
|