mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 10:44:12 +01:00 
			
		
		
		
	make branch parameter optional for /api/v1/repos/{owner}/{repo}/contents/{filepath} (#11067)
This commit is contained in:
		
							parent
							
								
									7179e49881
								
							
						
					
					
						commit
						b9ed8d8497
					
				@ -199,6 +199,10 @@ func CreateFile(ctx *context.APIContext, apiOpts api.CreateFileOptions) {
 | 
			
		||||
	//   "201":
 | 
			
		||||
	//     "$ref": "#/responses/FileResponse"
 | 
			
		||||
 | 
			
		||||
	if apiOpts.BranchName == "" {
 | 
			
		||||
		apiOpts.BranchName = ctx.Repo.Repository.DefaultBranch
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	opts := &repofiles.UpdateRepoFileOptions{
 | 
			
		||||
		Content:   apiOpts.Content,
 | 
			
		||||
		IsNewFile: true,
 | 
			
		||||
@ -271,6 +275,10 @@ func UpdateFile(ctx *context.APIContext, apiOpts api.UpdateFileOptions) {
 | 
			
		||||
	//   "200":
 | 
			
		||||
	//     "$ref": "#/responses/FileResponse"
 | 
			
		||||
 | 
			
		||||
	if apiOpts.BranchName == "" {
 | 
			
		||||
		apiOpts.BranchName = ctx.Repo.Repository.DefaultBranch
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	opts := &repofiles.UpdateRepoFileOptions{
 | 
			
		||||
		Content:      apiOpts.Content,
 | 
			
		||||
		SHA:          apiOpts.SHA,
 | 
			
		||||
@ -377,6 +385,10 @@ func DeleteFile(ctx *context.APIContext, apiOpts api.DeleteFileOptions) {
 | 
			
		||||
		return
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if apiOpts.BranchName == "" {
 | 
			
		||||
		apiOpts.BranchName = ctx.Repo.Repository.DefaultBranch
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	opts := &repofiles.DeleteRepoFileOptions{
 | 
			
		||||
		Message:   apiOpts.Message,
 | 
			
		||||
		OldBranch: apiOpts.BranchName,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user