mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	Use MixedCase constant names
See https://github.com/golang/go/wiki/CodeReviewComments#mixed-caps
This commit is contained in:
		| @@ -59,9 +59,9 @@ func CreateHook(ctx *context.APIContext, form api.CreateHookOption) { | ||||
| 		HookEvent: &models.HookEvent{ | ||||
| 			ChooseEvents: true, | ||||
| 			HookEvents: models.HookEvents{ | ||||
| 				Create:      com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_CREATE)), | ||||
| 				Push:        com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PUSH)), | ||||
| 				PullRequest: com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PULL_REQUEST)), | ||||
| 				Create:      com.IsSliceContainsStr(form.Events, string(models.HookEventCreate)), | ||||
| 				Push:        com.IsSliceContainsStr(form.Events, string(models.HookEventPush)), | ||||
| 				PullRequest: com.IsSliceContainsStr(form.Events, string(models.HookEventPullRequest)), | ||||
| 			}, | ||||
| 		}, | ||||
| 		IsActive:     form.Active, | ||||
| @@ -145,9 +145,9 @@ func EditHook(ctx *context.APIContext, form api.EditHookOption) { | ||||
| 	w.PushOnly = false | ||||
| 	w.SendEverything = false | ||||
| 	w.ChooseEvents = true | ||||
| 	w.Create = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_CREATE)) | ||||
| 	w.Push = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PUSH)) | ||||
| 	w.PullRequest = com.IsSliceContainsStr(form.Events, string(models.HOOK_EVENT_PULL_REQUEST)) | ||||
| 	w.Create = com.IsSliceContainsStr(form.Events, string(models.HookEventCreate)) | ||||
| 	w.Push = com.IsSliceContainsStr(form.Events, string(models.HookEventPush)) | ||||
| 	w.PullRequest = com.IsSliceContainsStr(form.Events, string(models.HookEventPullRequest)) | ||||
| 	if err = w.UpdateEvent(); err != nil { | ||||
| 		ctx.Error(500, "UpdateEvent", err) | ||||
| 		return | ||||
|   | ||||
		Reference in New Issue
	
	Block a user