2015-08-26 16:30:06 +00:00
|
|
|
{{template "base/head" .}}
|
2020-12-01 04:00:14 +00:00
|
|
|
<div class="page-content repository settings new webhook">
|
2015-08-26 16:30:06 +00:00
|
|
|
{{template "repo/header" .}}
|
2017-03-15 22:39:38 +00:00
|
|
|
{{template "repo/settings/navbar" .}}
|
2015-08-26 16:30:06 +00:00
|
|
|
<div class="ui container">
|
2017-03-15 22:39:38 +00: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 07:17:15 +00:00
|
|
|
{{if eq .HookType "gitea"}}
|
2020-12-19 01:17:27 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/gitea.svg">
|
2017-05-29 07:17:15 +00:00
|
|
|
{{else if eq .HookType "gogs"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/gogs.ico">
|
2017-03-15 22:39:38 +00:00
|
|
|
{{else if eq .HookType "slack"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/slack.png">
|
2017-08-28 05:06:45 +00:00
|
|
|
{{else if eq .HookType "discord"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/discord.png">
|
2017-11-21 04:26:43 +00:00
|
|
|
{{else if eq .HookType "dingtalk"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/dingtalk.ico">
|
2019-04-19 02:45:02 +00:00
|
|
|
{{else if eq .HookType "telegram"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/telegram.png">
|
2019-04-19 14:18:06 +00:00
|
|
|
{{else if eq .HookType "msteams"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/msteams.png">
|
2020-02-12 08:48:28 +00:00
|
|
|
{{else if eq .HookType "feishu"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/feishu.png">
|
2020-03-28 13:09:55 +00:00
|
|
|
{{else if eq .HookType "matrix"}}
|
2020-12-09 00:12:15 +00:00
|
|
|
<img width="26" height="26" src="{{StaticUrlPrefix}}/img/matrix.svg">
|
2017-03-15 22:39:38 +00:00
|
|
|
{{end}}
|
2015-12-07 22:30:52 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-16 14:01:55 +00: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 02:45:02 +00:00
|
|
|
{{template "repo/settings/webhook/telegram" .}}
|
2019-04-19 14:18:06 +00:00
|
|
|
{{template "repo/settings/webhook/msteams" .}}
|
2020-02-12 08:48:28 +00:00
|
|
|
{{template "repo/settings/webhook/feishu" .}}
|
2020-03-28 13:09:55 +00:00
|
|
|
{{template "repo/settings/webhook/matrix" .}}
|
2014-08-09 22:40:10 +00:00
|
|
|
</div>
|
2017-03-15 22:39:38 +00:00
|
|
|
|
2018-05-16 14:01:55 +00:00
|
|
|
{{template "repo/settings/webhook/history" .}}
|
2014-08-09 22:40:10 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-08-26 16:30:06 +00:00
|
|
|
{{template "base/footer" .}}
|