Files
release-action/node_modules/@octokit/rest/plugins/rest-api-endpoints/index.js
Nick Cipollo d8a9f1e813
Some checks failed
PR Checks / check_pr (push) Has been cancelled
Create 1.2.0 release
2019-12-12 16:03:50 -05:00

14 lines
388 B
JavaScript

module.exports = octokitRestApiEndpoints
const ROUTES = require('./routes.json')
function octokitRestApiEndpoints (octokit) {
// Aliasing scopes for backward compatibility
// See https://github.com/octokit/rest.js/pull/1134
ROUTES.gitdata = ROUTES.git
ROUTES.authorization = ROUTES.oauthAuthorizations
ROUTES.pullRequests = ROUTES.pulls
octokit.registerEndpoints(ROUTES)
}