You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
setup-node/node_modules/@octokit/rest/plugins/rest-api-endpoints/index.js

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)
}