2015-08-26 18:30:06 +02:00
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="repository settings new webhook">
|
|
|
|
{{template "repo/header" .}}
|
2017-03-15 23:39:38 +01:00
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-08-26 18:30:06 +02:00
|
|
|
<div class="ui container">
|
2017-03-15 23:39:38 +01:00
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
|
|
|
{{if .PageIsSettingsHooksNew}}{{.i18n.Tr "repo.settings.add_webhook"}}{{else}}{{.i18n.Tr "repo.settings.update_webhook"}}{{end}}
|
|
|
|
<div class="ui right">
|
2017-05-29 09:17:15 +02:00
|
|
|
{{if eq .HookType "gitea"}}
|
2017-07-28 07:51:20 +02:00
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gitea-sm.png">
|
2017-05-29 09:17:15 +02:00
|
|
|
{{else if eq .HookType "gogs"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gogs.ico">
|
2017-03-15 23:39:38 +01:00
|
|
|
{{else if eq .HookType "slack"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/slack.png">
|
2017-08-28 07:06:45 +02:00
|
|
|
{{else if eq .HookType "discord"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/discord.png">
|
2017-11-21 05:26:43 +01:00
|
|
|
{{else if eq .HookType "dingtalk"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/dingtalk.ico">
|
2019-04-19 04:45:02 +02:00
|
|
|
{{else if eq .HookType "telegram"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/telegram.png">
|
2019-04-19 16:18:06 +02:00
|
|
|
{{else if eq .HookType "msteams"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/msteams.png">
|
2017-03-15 23:39:38 +01:00
|
|
|
{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2017-03-15 23:39:38 +01:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-16 16:01:55 +02:00
|
|
|
{{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-04-19 04:45:02 +02:00
|
|
|
{{template "repo/settings/webhook/telegram" .}}
|
2019-04-19 16:18:06 +02:00
|
|
|
{{template "repo/settings/webhook/msteams" .}}
|
2014-08-10 00:40:10 +02:00
|
|
|
</div>
|
2017-03-15 23:39:38 +01:00
|
|
|
|
2018-05-16 16:01:55 +02:00
|
|
|
{{template "repo/settings/webhook/history" .}}
|
2014-08-10 00:40:10 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-26 18:30:06 +02:00
|
|
|
{{template "base/footer" .}}
|