2019-03-19 08:03:20 +05:30
|
|
|
{{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"}}
|
2019-10-22 17:41:01 +05:30
|
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/gitea-sm.png">
|
2019-03-19 08:03:20 +05:30
|
|
|
{{else if eq .HookType "gogs"}}
|
2019-10-22 17:41:01 +05:30
|
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/gogs.ico">
|
2019-03-19 08:03:20 +05:30
|
|
|
{{else if eq .HookType "slack"}}
|
2019-10-22 17:41:01 +05:30
|
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/slack.png">
|
2019-03-19 08:03:20 +05:30
|
|
|
{{else if eq .HookType "discord"}}
|
2019-10-22 17:41:01 +05:30
|
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/discord.png">
|
2019-03-19 08:03:20 +05:30
|
|
|
{{else if eq .HookType "dingtalk"}}
|
2019-10-22 17:41:01 +05:30
|
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/dingtalk.ico">
|
2019-08-27 04:29:10 +05:30
|
|
|
{{else if eq .HookType "telegram"}}
|
2019-10-22 17:41:01 +05:30
|
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/telegram.png">
|
2019-04-19 19:48:06 +05:30
|
|
|
{{else if eq .HookType "msteams"}}
|
2019-10-22 17:41:01 +05:30
|
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/msteams.png">
|
2019-03-19 08:03:20 +05:30
|
|
|
{{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" .}}
|
2019-08-27 04:29:10 +05:30
|
|
|
{{template "repo/settings/webhook/telegram" .}}
|
2019-04-19 19:48:06 +05:30
|
|
|
{{template "repo/settings/webhook/msteams" .}}
|
2019-03-19 08:03:20 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
{{template "repo/settings/webhook/history" .}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|