mirror of
				https://github.com/actions/setup-dotnet.git
				synced 2025-11-04 10:03:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			388 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			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)
 | 
						|
}
 |