mirror of
https://github.com/HeyPuter/puter.git
synced 2025-01-24 06:50:22 +08:00
dev: add notif.ack message
This commit is contained in:
parent
3f3f4e6cb9
commit
00e0fb350a
@ -70,6 +70,8 @@ class NotificationService extends BaseService {
|
||||
app.use('/notif', router);
|
||||
|
||||
router.use(auth2);
|
||||
|
||||
const svc_event = this.services.get('event');
|
||||
|
||||
[['ack','acknowledged'],['read','read']].forEach(([ep_name, col_name]) => {
|
||||
Endpoint({
|
||||
@ -92,6 +94,13 @@ class NotificationService extends BaseService {
|
||||
'LIMIT 1',
|
||||
[ack_ts, req.body.uid, req.user.id],
|
||||
);
|
||||
|
||||
svc_event.emit('outer.gui.notif.ack', {
|
||||
user_id_list: [req.user.id],
|
||||
response: {
|
||||
uid: req.body.uid,
|
||||
},
|
||||
});
|
||||
|
||||
res.json({});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user