Files
RSSHub/lib/v2/discourse/router.js
T
Andvari 26a5d268e7 feat(route): Add Discourse notifications fulltext support. (#13168)
* feat(route): Add Discourse notifications fulltext support.

* Update doc.

* Update notifications.js

* Update bbs.md

* Update bbs.md
2023-09-02 00:31:32 +08:00

5 lines
173 B
JavaScript

module.exports = (router) => {
router.get('/:configId/posts', require('./posts'));
router.get('/:configId/notifications/:fulltext?', require('./notifications'));
};