mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Possible fix the webhook API creation (#13960)
* Possible fix the webhook API creation * Fix api create webhook bug
This commit is contained in:
		@@ -6,6 +6,7 @@ package utils
 | 
			
		||||
 | 
			
		||||
import (
 | 
			
		||||
	"encoding/json"
 | 
			
		||||
	"fmt"
 | 
			
		||||
	"net/http"
 | 
			
		||||
	"strings"
 | 
			
		||||
 | 
			
		||||
@@ -53,7 +54,7 @@ func GetRepoHook(ctx *context.APIContext, repoID, hookID int64) (*models.Webhook
 | 
			
		||||
// write the appropriate error to `ctx`. Return whether the form is valid
 | 
			
		||||
func CheckCreateHookOption(ctx *context.APIContext, form *api.CreateHookOption) bool {
 | 
			
		||||
	if !webhook.IsValidHookTaskType(form.Type) {
 | 
			
		||||
		ctx.Error(http.StatusUnprocessableEntity, "", "Invalid hook type")
 | 
			
		||||
		ctx.Error(http.StatusUnprocessableEntity, "", fmt.Sprintf("Invalid hook type: %s", form.Type))
 | 
			
		||||
		return false
 | 
			
		||||
	}
 | 
			
		||||
	for _, name := range []string{"url", "content_type"} {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user