mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	* [FEATURE] [API] Add Endpoint for Branch Creation Issue: https://github.com/go-gitea/gitea/issues/11376 This commit introduces an API endpoint for branch creation. The added route is POST /repos/{owner}/{repo}/branches. A JSON with the name of the new branch and the name of the old branch is required as parameters. Signed-off-by: Terence Le Huu Phuong <terence@qwasar.io> * Put all the logic into CreateBranch and removed CreateRepoBranch * - Added the error ErrBranchDoesNotExist in error.go - Made the CreateNewBranch function return an errBranchDoesNotExist error when the OldBranch does not exist - Made the CreateBranch API function checks that the repository is not empty and that branch exists. * - Added a resetFixtures helper function in integration_test.go to fine-tune test env resetting - Added api test for CreateBranch - Used resetFixture instead of the more general prepareTestEnv in the repo_branch_test CreateBranch tests * Moved the resetFixtures call inside the loop for APICreateBranch function * Put the prepareTestEnv back in repo_branch_test * fix import order/sort api branch test Co-authored-by: zeripath <art27@cantab.net>
		
			
				
	
	
		
			152 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			152 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2017 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.
 | 
						|
 | 
						|
package swagger
 | 
						|
 | 
						|
import (
 | 
						|
	"code.gitea.io/gitea/modules/auth"
 | 
						|
	api "code.gitea.io/gitea/modules/structs"
 | 
						|
)
 | 
						|
 | 
						|
// not actually a response, just a hack to get go-swagger to include definitions
 | 
						|
// of the various XYZOption structs
 | 
						|
 | 
						|
// parameterBodies
 | 
						|
// swagger:response parameterBodies
 | 
						|
type swaggerParameterBodies struct {
 | 
						|
	// in:body
 | 
						|
	AddCollaboratorOption api.AddCollaboratorOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateEmailOption api.CreateEmailOption
 | 
						|
	// in:body
 | 
						|
	DeleteEmailOption api.DeleteEmailOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateHookOption api.CreateHookOption
 | 
						|
	// in:body
 | 
						|
	EditHookOption api.EditHookOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditGitHookOption api.EditGitHookOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateIssueOption api.CreateIssueOption
 | 
						|
	// in:body
 | 
						|
	EditIssueOption api.EditIssueOption
 | 
						|
	// in:body
 | 
						|
	EditDeadlineOption api.EditDeadlineOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateIssueCommentOption api.CreateIssueCommentOption
 | 
						|
	// in:body
 | 
						|
	EditIssueCommentOption api.EditIssueCommentOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	IssueLabelsOption api.IssueLabelsOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateKeyOption api.CreateKeyOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateLabelOption api.CreateLabelOption
 | 
						|
	// in:body
 | 
						|
	EditLabelOption api.EditLabelOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	MarkdownOption api.MarkdownOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateMilestoneOption api.CreateMilestoneOption
 | 
						|
	// in:body
 | 
						|
	EditMilestoneOption api.EditMilestoneOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateOrgOption api.CreateOrgOption
 | 
						|
	// in:body
 | 
						|
	EditOrgOption api.EditOrgOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePullRequestOption api.CreatePullRequestOption
 | 
						|
	// in:body
 | 
						|
	EditPullRequestOption api.EditPullRequestOption
 | 
						|
	// in:body
 | 
						|
	MergePullRequestOption auth.MergePullRequestForm
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateReleaseOption api.CreateReleaseOption
 | 
						|
	// in:body
 | 
						|
	EditReleaseOption api.EditReleaseOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateRepoOption api.CreateRepoOption
 | 
						|
	// in:body
 | 
						|
	EditRepoOption api.EditRepoOption
 | 
						|
	// in:body
 | 
						|
	TransferRepoOption api.TransferRepoOption
 | 
						|
	// in:body
 | 
						|
	CreateForkOption api.CreateForkOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateStatusOption api.CreateStatusOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateTeamOption api.CreateTeamOption
 | 
						|
	// in:body
 | 
						|
	EditTeamOption api.EditTeamOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	AddTimeOption api.AddTimeOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateUserOption api.CreateUserOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditUserOption api.EditUserOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	MigrateRepoForm auth.MigrateRepoForm
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditAttachmentOptions api.EditAttachmentOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateFileOptions api.CreateFileOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	UpdateFileOptions api.UpdateFileOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	DeleteFileOptions api.DeleteFileOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CommitDateOptions api.CommitDateOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	RepoTopicOptions api.RepoTopicOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditReactionOption api.EditReactionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateBranchRepoOption api.CreateBranchRepoOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateBranchProtectionOption api.CreateBranchProtectionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	EditBranchProtectionOption api.EditBranchProtectionOption
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreateOAuth2ApplicationOptions api.CreateOAuth2ApplicationOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePullReviewOptions api.CreatePullReviewOptions
 | 
						|
 | 
						|
	// in:body
 | 
						|
	CreatePullReviewComment api.CreatePullReviewComment
 | 
						|
 | 
						|
	// in:body
 | 
						|
	SubmitPullReviewOptions api.SubmitPullReviewOptions
 | 
						|
}
 |