blob: a17a3e721605f23936eeb08fbd6292aa9df378bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import { publishMainStream } from '../../../../services/stream';
import define from '../../define';
import { Notifications } from '../../../../models';
export const meta = {
desc: {
'ja-JP': '全ての通知を既読にします。',
'en-US': 'Mark all notifications as read.'
},
tags: ['notifications', 'account'],
requireCredential: true as const,
kind: 'write:notifications'
};
export default define(meta, async (ps, user) => {
// Update documents
await Notifications.update({
notifieeId: user.id,
isRead: false,
}, {
isRead: true
});
// 全ての通知を読みましたよというイベントを発行
publishMainStream(user.id, 'readAllNotifications');
});
|