2019-03-18 22:33:20 -04:00
|
|
|
{{template "base/head" .}}
|
2022-01-05 16:00:20 -05:00
|
|
|
<div class="page-content admin settings new webhook">
|
2019-03-18 22:33:20 -04:00
|
|
|
{{template "admin/navbar" .}}
|
|
|
|
<div class="ui container">
|
|
|
|
{{template "base/alert" .}}
|
|
|
|
<h4 class="ui top attached header">
|
2021-01-14 18:24:03 -05:00
|
|
|
{{if .PageIsAdminDefaultHooksNew}}
|
|
|
|
{{.i18n.Tr "admin.defaulthooks.add_webhook"}}
|
|
|
|
{{else if .PageIsAdminSystemHooksNew}}
|
|
|
|
{{.i18n.Tr "admin.systemhooks.add_webhook"}}
|
|
|
|
{{else if .Webhook.IsSystemWebhook}}
|
|
|
|
{{.i18n.Tr "admin.systemhooks.update_webhook"}}
|
2019-03-18 22:33:20 -04:00
|
|
|
{{else}}
|
2021-01-14 18:24:03 -05:00
|
|
|
{{.i18n.Tr "admin.defaulthooks.update_webhook"}}
|
2019-03-18 22:33:20 -04:00
|
|
|
{{end}}
|
|
|
|
<div class="ui right">
|
|
|
|
{{if eq .HookType "gitea"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/gitea.svg">
|
2019-03-18 22:33:20 -04:00
|
|
|
{{else if eq .HookType "gogs"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/gogs.ico">
|
2019-03-18 22:33:20 -04:00
|
|
|
{{else if eq .HookType "slack"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/slack.png">
|
2019-03-18 22:33:20 -04:00
|
|
|
{{else if eq .HookType "discord"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/discord.png">
|
2019-03-18 22:33:20 -04:00
|
|
|
{{else if eq .HookType "dingtalk"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/dingtalk.ico">
|
2019-08-26 18:59:10 -04:00
|
|
|
{{else if eq .HookType "telegram"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/telegram.png">
|
2019-04-19 10:18:06 -04:00
|
|
|
{{else if eq .HookType "msteams"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/msteams.png">
|
2020-02-12 03:48:28 -05:00
|
|
|
{{else if eq .HookType "feishu"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/feishu.png">
|
2020-06-02 22:04:52 -04:00
|
|
|
{{else if eq .HookType "matrix"}}
|
2021-05-08 10:27:25 -04:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/matrix.svg">
|
2021-07-23 00:41:27 -04:00
|
|
|
{{else if eq .HookType "wechatwork"}}
|
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/wechatwork.png">
|
2022-01-23 08:46:30 -05:00
|
|
|
{{else if eq .HookType "packagist"}}
|
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/packagist.png">
|
2019-03-18 22:33:20 -04:00
|
|
|
{{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-26 18:59:10 -04:00
|
|
|
{{template "repo/settings/webhook/telegram" .}}
|
2019-04-19 10:18:06 -04:00
|
|
|
{{template "repo/settings/webhook/msteams" .}}
|
2020-02-12 03:48:28 -05:00
|
|
|
{{template "repo/settings/webhook/feishu" .}}
|
2020-06-02 22:04:52 -04:00
|
|
|
{{template "repo/settings/webhook/matrix" .}}
|
2021-07-23 00:41:27 -04:00
|
|
|
{{template "repo/settings/webhook/wechatwork" .}}
|
2022-01-23 08:46:30 -05:00
|
|
|
{{template "repo/settings/webhook/packagist" .}}
|
2019-03-18 22:33:20 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
{{template "repo/settings/webhook/history" .}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{template "base/footer" .}}
|