Partially implement #770. Add "Default Webhooks" page in site admin UI. Persist to the existing webhooks table, but store with RepoID=0 and OrgID=0. Upon repo creation, copy the set of default webhooks into the new repo.
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
{{template "base/head" .}}
 | 
						|
<div class="admin new webhook">
 | 
						|
	{{template "admin/navbar" .}}
 | 
						|
	<div class="ui container">
 | 
						|
		{{template "base/alert" .}}
 | 
						|
		<h4 class="ui top attached header">
 | 
						|
			{{if .PageIsAdminHooksNew}}
 | 
						|
				{{.i18n.Tr "admin.hooks.add_webhook"}}
 | 
						|
			{{else}}
 | 
						|
				{{.i18n.Tr "admin.hooks.update_webhook"}}
 | 
						|
			{{end}}
 | 
						|
			<div class="ui right">
 | 
						|
				{{if eq .HookType "gitea"}}
 | 
						|
					<img class="img-13" src="{{AppSubUrl}}/img/gitea-sm.png">
 | 
						|
				{{else if eq .HookType "gogs"}}
 | 
						|
					<img class="img-13" src="{{AppSubUrl}}/img/gogs.ico">
 | 
						|
				{{else if eq .HookType "slack"}}
 | 
						|
					<img class="img-13" src="{{AppSubUrl}}/img/slack.png">
 | 
						|
				{{else if eq .HookType "discord"}}
 | 
						|
					<img class="img-13" src="{{AppSubUrl}}/img/discord.png">
 | 
						|
				{{else if eq .HookType "dingtalk"}}
 | 
						|
					<img class="img-13" src="{{AppSubUrl}}/img/dingtalk.ico">
 | 
						|
				{{end}}
 | 
						|
			</div>
 | 
						|
		</h4>
 | 
						|
		<div class="ui attached segment">
 | 
						|
			{{template "repo/settings/webhook/gitea" .}}
 | 
						|
			{{template "repo/settings/webhook/gogs" .}}
 | 
						|
			{{template "repo/settings/webhook/slack" .}}
 | 
						|
			{{template "repo/settings/webhook/discord" .}}
 | 
						|
			{{template "repo/settings/webhook/dingtalk" .}}
 | 
						|
		</div>
 | 
						|
 | 
						|
		{{template "repo/settings/webhook/history" .}}
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
{{template "base/footer" .}}
 |