mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-04 19:59:54 +08:00
* Fix(route): fix route parameter conflict at trending.js and change to V2 * Fix(route): modify the judgment condition of language parameter * Fix(docs): Update docs/programming.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Fix(docs): Update docs/en/programming.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * fix(docs/route): add author and sort routes * Fix(route): Update docs/en/programming.md Co-authored-by: Tony <TonyRL@users.noreply.github.com> * Fix(route): sort routes Co-authored-by: Tony <TonyRL@users.noreply.github.com>
16 lines
667 B
JavaScript
16 lines
667 B
JavaScript
module.exports = {
|
|
'/branches/:user/:repo': ['max-arnold'],
|
|
'/comments/:user/:repo/:type/:number': ['TonyRL'],
|
|
'/contributors/:user/:repo/:order?/:anon?': ['zoenglinghou'],
|
|
'/file/:user/:repo/:branch/:filepath+': ['zengxs'],
|
|
'/issue/:user/:repo/:state?/:labels?': ['HenryQW', 'AndreyMZ'],
|
|
'/pull/:user/:repo': ['hashman'],
|
|
'/repos/:user': ['DIYgod'],
|
|
'/search/:query/:sort?/:order?': ['LogicJake'],
|
|
'/starred_repos/:user': ['LanceZhu'],
|
|
'/stars/:user/:repo': ['HenryQW'],
|
|
'/topics/:name/:qs?': ['queensferryme'],
|
|
'/trending/:since/:language?/:spoken_language?': ['DIYgod'],
|
|
'/user/followers/:user': ['HenryQW'],
|
|
};
|