mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-25 02:09:05 +01:00
6de16eb71e
* wip
* wip
* wip
* Update attached_notes.ts
* wip
* Refactor
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* Update call.ts
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* wip
* ✌️
* Fix
39 lines
831 B
TypeScript
39 lines
831 B
TypeScript
import User from '../../../../models/user';
|
|
import { publishMainStream } from '../../../../services/stream';
|
|
import NoteUnread from '../../../../models/note-unread';
|
|
import define from '../../define';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': '未読の投稿をすべて既読にします。',
|
|
'en-US': 'Mark all messages as read.'
|
|
},
|
|
|
|
requireCredential: true,
|
|
|
|
kind: 'account-write',
|
|
|
|
params: {
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, user) => {
|
|
// Remove documents
|
|
await NoteUnread.remove({
|
|
userId: user._id
|
|
});
|
|
|
|
User.update({ _id: user._id }, {
|
|
$set: {
|
|
hasUnreadMentions: false,
|
|
hasUnreadSpecifiedNotes: false
|
|
}
|
|
});
|
|
|
|
// 全て既読になったイベントを発行
|
|
publishMainStream(user._id, 'readAllUnreadMentions');
|
|
publishMainStream(user._id, 'readAllUnreadSpecifiedNotes');
|
|
|
|
return;
|
|
});
|