mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-21 12:49:53 +08:00
* feat(route): Add Discourse notifications fulltext support. * Update doc. * Update notifications.js * Update bbs.md * Update bbs.md
5 lines
173 B
JavaScript
5 lines
173 B
JavaScript
module.exports = (router) => {
|
|
router.get('/:configId/posts', require('./posts'));
|
|
router.get('/:configId/notifications/:fulltext?', require('./notifications'));
|
|
};
|