2023-04-23 12:21:21 +02:00
|
|
|
{{template "org/settings/layout_head" (dict "ctxData" . "pageClass" "organization settings new webhook")}}
|
|
|
|
<div class="org-setting-content">
|
2015-12-07 23:30:52 +01:00
|
|
|
<h4 class="ui top attached header">
|
2022-06-27 22:58:46 +02:00
|
|
|
{{if .PageIsSettingsHooksNew}}{{.locale.Tr "repo.settings.add_webhook"}}{{else}}{{.locale.Tr "repo.settings.update_webhook"}}{{end}}
|
2015-12-07 23:30:52 +01:00
|
|
|
<div class="ui right">
|
2017-05-29 09:17:15 +02:00
|
|
|
{{if eq .HookType "gitea"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/gitea.svg">
|
2017-05-29 09:17:15 +02:00
|
|
|
{{else if eq .HookType "gogs"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/gogs.ico">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{else if eq .HookType "slack"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/slack.png">
|
2017-10-25 07:13:45 +02:00
|
|
|
{{else if eq .HookType "discord"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/discord.png">
|
2017-11-21 05:26:43 +01:00
|
|
|
{{else if eq .HookType "dingtalk"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/dingtalk.ico">
|
2019-04-19 04:45:02 +02:00
|
|
|
{{else if eq .HookType "telegram"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/telegram.png">
|
2019-04-19 16:18:06 +02:00
|
|
|
{{else if eq .HookType "msteams"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/msteams.png">
|
2020-02-12 09:48:28 +01:00
|
|
|
{{else if eq .HookType "feishu"}}
|
2021-05-08 16:27:25 +02:00
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/feishu.png">
|
2020-06-03 04:04:52 +02:00
|
|
|
{{else if eq .HookType "matrix"}}
|
2022-11-21 21:25:26 +01:00
|
|
|
{{svg "gitea-matrix" 26}}
|
2021-07-23 06:41:27 +02:00
|
|
|
{{else if eq .HookType "wechatwork"}}
|
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/wechatwork.png">
|
2022-01-23 14:46:30 +01:00
|
|
|
{{else if eq .HookType "packagist"}}
|
|
|
|
<img width="26" height="26" src="{{AssetUrlPrefix}}/img/packagist.png">
|
2015-12-07 23:30:52 +01:00
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-23 09:23:23 +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" .}}
|
2020-02-12 09:48:28 +01:00
|
|
|
{{template "repo/settings/webhook/feishu" .}}
|
2020-06-03 04:04:52 +02:00
|
|
|
{{template "repo/settings/webhook/matrix" .}}
|
2021-07-23 06:41:27 +02:00
|
|
|
{{template "repo/settings/webhook/wechatwork" .}}
|
2022-01-23 14:46:30 +01:00
|
|
|
{{template "repo/settings/webhook/packagist" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2015-08-26 18:30:06 +02:00
|
|
|
|
2018-05-23 09:23:23 +02:00
|
|
|
{{template "repo/settings/webhook/history" .}}
|
2015-12-07 23:30:52 +01:00
|
|
|
</div>
|
2023-04-23 12:21:21 +02:00
|
|
|
|
|
|
|
{{template "org/settings/layout_footer" .}}
|