2023-04-23 10:21:21 +00:00
|
|
|
{{template "admin/layout_head" (dict "ctxData" . "pageClass" "admin settings new webhook")}}
|
|
|
|
<div class="admin-setting-content">
|
2019-03-19 02:33:20 +00:00
|
|
|
<h4 class="ui top attached header">
|
2021-01-14 23:24:03 +00:00
|
|
|
{{if .PageIsAdminDefaultHooksNew}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "admin.defaulthooks.add_webhook"}}
|
2021-01-14 23:24:03 +00:00
|
|
|
{{else if .PageIsAdminSystemHooksNew}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "admin.systemhooks.add_webhook"}}
|
2021-01-14 23:24:03 +00:00
|
|
|
{{else if .Webhook.IsSystemWebhook}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "admin.systemhooks.update_webhook"}}
|
2019-03-19 02:33:20 +00:00
|
|
|
{{else}}
|
2022-06-27 20:58:46 +00:00
|
|
|
{{.locale.Tr "admin.defaulthooks.update_webhook"}}
|
2019-03-19 02:33:20 +00:00
|
|
|
{{end}}
|
|
|
|
<div class="ui right">
|
2023-01-14 09:07:01 +00:00
|
|
|
{{if eq .HookType "forgejo"}}
|
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/forgejo.svg">
|
|
|
|
{{else if eq .HookType "gitea"}}
|
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/gitea-original.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"}}
|
2022-11-21 20:25:26 +00:00
|
|
|
{{svg "gitea-matrix" 26}}
|
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">
|
2023-01-14 09:07:01 +00:00
|
|
|
{{template "repo/settings/webhook/forgejo" .}}
|
2019-03-19 02:33:20 +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-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>
|
2023-04-23 10:21:21 +00:00
|
|
|
{{template "admin/layout_footer" .}}
|