mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Replace #23761 --------- Co-authored-by: Denys Konovalov <kontakt@denyskon.de> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			27 lines
		
	
	
		
			809 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			809 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package user
 | 
						|
 | 
						|
import (
 | 
						|
	"code.gitea.io/gitea/modules/context"
 | 
						|
	"code.gitea.io/gitea/routers/api/v1/shared"
 | 
						|
)
 | 
						|
 | 
						|
// https://docs.github.com/en/rest/actions/self-hosted-runners?apiVersion=2022-11-28#create-a-registration-token-for-an-organization
 | 
						|
 | 
						|
// GetRegistrationToken returns the token to register user runners
 | 
						|
func GetRegistrationToken(ctx *context.APIContext) {
 | 
						|
	// swagger:operation GET /user/actions/runners/registration-token user userGetRunnerRegistrationToken
 | 
						|
	// ---
 | 
						|
	// summary: Get an user's actions runner registration token
 | 
						|
	// produces:
 | 
						|
	// - application/json
 | 
						|
	// parameters:
 | 
						|
	// responses:
 | 
						|
	//   "200":
 | 
						|
	//     "$ref": "#/responses/RegistrationToken"
 | 
						|
 | 
						|
	shared.GetRegistrationToken(ctx, ctx.Doer.ID, 0)
 | 
						|
}
 |