2015-08-26 19:30:06 +03:00
{{ template "base/head" . }}
2023-02-02 01:56:10 +03:00
<div role="main" aria-label=" {{ .Title }} " class="page-content organization settings new webhook">
2015-12-08 01:30:52 +03:00
{{ template "org/header" . }}
<div class="ui container">
<div class="ui grid">
{{ template "org/settings/navbar" . }}
<div class="twelve wide column content">
{{ template "base/alert" . }}
<h4 class="ui top attached header">
2022-06-27 23:58:46 +03:00
{{ if .PageIsSettingsHooksNew }} {{ .locale .Tr "repo.settings.add_webhook" }} {{ else }} {{ .locale .Tr "repo.settings.update_webhook" }} {{ end }}
2015-12-08 01:30:52 +03:00
<div class="ui right">
2017-05-29 10:17:15 +03:00
{{ if eq .HookType "gitea" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/gitea.svg">
2017-05-29 10:17:15 +03:00
{{ else if eq .HookType "gogs" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/gogs.ico">
2015-12-08 01:30:52 +03:00
{{ else if eq .HookType "slack" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/slack.png">
2017-10-25 08:13:45 +03:00
{{ else if eq .HookType "discord" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/discord.png">
2017-11-21 07:26:43 +03:00
{{ else if eq .HookType "dingtalk" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/dingtalk.ico">
2019-04-19 05:45:02 +03:00
{{ else if eq .HookType "telegram" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/telegram.png">
2019-04-19 17:18:06 +03:00
{{ else if eq .HookType "msteams" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/msteams.png">
2020-02-12 11:48:28 +03:00
{{ else if eq .HookType "feishu" }}
2021-05-08 17:27:25 +03:00
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/feishu.png">
2020-06-03 05:04:52 +03:00
{{ else if eq .HookType "matrix" }}
2022-11-21 23:25:26 +03:00
{{ svg "gitea-matrix" 2 6 }}
2021-07-23 07:41:27 +03:00
{{ else if eq .HookType "wechatwork" }}
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/wechatwork.png">
2022-01-23 16:46:30 +03:00
{{ else if eq .HookType "packagist" }}
<img width="26" height="26" src=" {{ AssetUrlPrefix }} /img/packagist.png">
2015-12-08 01:30:52 +03:00
{{ end }}
</div>
</h4>
<div class="ui attached segment">
2018-05-23 10:23:23 +03: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 05:45:02 +03:00
{{ template "repo/settings/webhook/telegram" . }}
2019-04-19 17:18:06 +03:00
{{ template "repo/settings/webhook/msteams" . }}
2020-02-12 11:48:28 +03:00
{{ template "repo/settings/webhook/feishu" . }}
2020-06-03 05:04:52 +03:00
{{ template "repo/settings/webhook/matrix" . }}
2021-07-23 07:41:27 +03:00
{{ template "repo/settings/webhook/wechatwork" . }}
2022-01-23 16:46:30 +03:00
{{ template "repo/settings/webhook/packagist" . }}
2015-12-08 01:30:52 +03:00
</div>
2015-08-26 19:30:06 +03:00
2018-05-23 10:23:23 +03:00
{{ template "repo/settings/webhook/history" . }}
2015-12-08 01:30:52 +03:00
</div>
</div>
</div>
2014-09-04 15:17:00 +04:00
</div>
2015-08-26 19:30:06 +03:00
{{ template "base/footer" . }}