fix missing orgnization discord webhook (#2414)
This commit is contained in:
		
							parent
							
								
									019c90ab8f
								
							
						
					
					
						commit
						15d3872281
					
				|  | @ -104,7 +104,6 @@ func WebhooksNew(ctx *context.Context) { | ||||||
| 		ctx.Data["DiscordHook"] = map[string]interface{}{ | 		ctx.Data["DiscordHook"] = map[string]interface{}{ | ||||||
| 			"Username": "Gitea", | 			"Username": "Gitea", | ||||||
| 			"IconURL":  setting.AppURL + "img/favicon.png", | 			"IconURL":  setting.AppURL + "img/favicon.png", | ||||||
| 			"Color":    16724530, |  | ||||||
| 		} | 		} | ||||||
| 	} | 	} | ||||||
| 	ctx.Data["BaseLink"] = orCtx.Link | 	ctx.Data["BaseLink"] = orCtx.Link | ||||||
|  |  | ||||||
|  | @ -396,10 +396,12 @@ func RegisterRoutes(m *macaron.Macaron) { | ||||||
| 					m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) | 					m.Post("/gitea/new", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksNewPost) | ||||||
| 					m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost) | 					m.Post("/gogs/new", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksNewPost) | ||||||
| 					m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) | 					m.Post("/slack/new", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksNewPost) | ||||||
|  | 					m.Post("/discord/new", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost) | ||||||
| 					m.Get("/:id", repo.WebHooksEdit) | 					m.Get("/:id", repo.WebHooksEdit) | ||||||
| 					m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost) | 					m.Post("/gitea/:id", bindIgnErr(auth.NewWebhookForm{}), repo.WebHooksEditPost) | ||||||
| 					m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost) | 					m.Post("/gogs/:id", bindIgnErr(auth.NewGogshookForm{}), repo.GogsHooksEditPost) | ||||||
| 					m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) | 					m.Post("/slack/:id", bindIgnErr(auth.NewSlackHookForm{}), repo.SlackHooksEditPost) | ||||||
|  | 					m.Post("/discord/:id", bindIgnErr(auth.NewDiscordHookForm{}), repo.DiscordHooksEditPost) | ||||||
| 				}) | 				}) | ||||||
| 
 | 
 | ||||||
| 				m.Route("/delete", "GET,POST", org.SettingsDelete) | 				m.Route("/delete", "GET,POST", org.SettingsDelete) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue