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