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