Files
talk/plugins/talk-plugin-notifications/server/router.js
T
Wyatt Johnson 8b669a31c5 initial notification draft
- implements new notification manager using connect api
- first use case of plugins using the plugin api
2018-02-09 18:17:25 -07:00

7 lines
162 B
JavaScript

module.exports = router => {
router.get('/account/unsubscribe-notifications', async (req, res) => {
// TODO: implement
res.json({ ok: true });
});
};