mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	- Add a new `CreateSecretOption` struct for creating secrets - Implement a `CreateOrgSecret` function to create a secret in an organization - Add a new route in `api.go` to handle the creation of organization secrets - Update the Swagger template to include the new `CreateOrgSecret` API endpoint --------- Signed-off-by: appleboy <appleboy.tw@gmail.com>
		
			
				
	
	
		
			21 lines
		
	
	
		
			409 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			409 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package swagger
 | 
						|
 | 
						|
import api "code.gitea.io/gitea/modules/structs"
 | 
						|
 | 
						|
// SecretList
 | 
						|
// swagger:response SecretList
 | 
						|
type swaggerResponseSecretList struct {
 | 
						|
	// in:body
 | 
						|
	Body []api.Secret `json:"body"`
 | 
						|
}
 | 
						|
 | 
						|
// Secret
 | 
						|
// swagger:response Secret
 | 
						|
type swaggerResponseSecret struct {
 | 
						|
	// in:body
 | 
						|
	Body api.Secret `json:"body"`
 | 
						|
}
 |