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