Files
RSSHub/lib/v2/bitbucket/radar.js
Zhen Zhong 3baeb0aa8c feat(route): add bitbucket commits and tags (#9316)
* add bitbucket commits and tags

* add english doc

* fix bitbucket radar.js

* fix bitbucket docs

* docs: add bitbucket cn docs

* fix: use parseDate utils
2022-03-14 20:57:54 +08:00

20 lines
631 B
JavaScript

module.exports = {
'bitbucket.com': {
_name: 'Bitbucket',
'.': [
{
title: 'Commits',
docs: 'https://docs.rsshub.app/programming.html#bitbucket',
source: ['/commits/:workspace/:repo_slug'],
target: '/bitbucket/commits/:workspace/:repo_slug',
},
{
title: 'Tags',
docs: 'https://docs.rsshub.app/programming.html#bitbucket',
source: ['/tags/:workspace/:repo_slug'],
target: '/bitbcuket/tags/:workspace/:repo_slug',
},
],
},
};