mirror of
https://github.com/wassname/talk.git
synced 2026-07-03 20:57:49 +08:00
8b669a31c5
- implements new notification manager using connect api - first use case of plugins using the plugin api
7 lines
162 B
JavaScript
7 lines
162 B
JavaScript
module.exports = router => {
|
|
router.get('/account/unsubscribe-notifications', async (req, res) => {
|
|
// TODO: implement
|
|
res.json({ ok: true });
|
|
});
|
|
};
|