2015-08-26 22:00:06 +05:30
|
|
|
{{template "base/head" .}}
|
|
|
|
<div class="organization settings new webhook">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{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">
|
|
|
|
{{if .PageIsSettingsHooksNew}}{{.i18n.Tr "repo.settings.add_webhook"}}{{else}}{{.i18n.Tr "repo.settings.update_webhook"}}{{end}}
|
|
|
|
<div class="ui right">
|
2017-05-29 12:47:15 +05:30
|
|
|
{{if eq .HookType "gitea"}}
|
2017-07-28 11:21:20 +05:30
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gitea-sm.png">
|
2017-05-29 12:47:15 +05:30
|
|
|
{{else if eq .HookType "gogs"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/gogs.ico">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{else if eq .HookType "slack"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/slack.png">
|
2017-10-25 10:43:45 +05:30
|
|
|
{{else if eq .HookType "discord"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/discord.png">
|
2017-11-21 09:56:43 +05:30
|
|
|
{{else if eq .HookType "dingtalk"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/dingtalk.png">
|
2019-04-19 08:15:02 +05:30
|
|
|
{{else if eq .HookType "telegram"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/telegram.png">
|
2019-04-19 19:48:06 +05:30
|
|
|
{{else if eq .HookType "msteams"}}
|
|
|
|
<img class="img-13" src="{{AppSubUrl}}/img/msteams.png">
|
2015-12-08 04:00:52 +05:30
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
</h4>
|
|
|
|
<div class="ui attached segment">
|
2018-05-23 12:53:23 +05:30
|
|
|
{{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 08:15:02 +05:30
|
|
|
{{template "repo/settings/webhook/telegram" .}}
|
2019-04-19 19:48:06 +05:30
|
|
|
{{template "repo/settings/webhook/msteams" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
2015-08-26 22:00:06 +05:30
|
|
|
|
2018-05-23 12:53:23 +05:30
|
|
|
{{template "repo/settings/webhook/history" .}}
|
2015-12-08 04:00:52 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-09-04 16:47:00 +05:30
|
|
|
</div>
|
2015-08-26 22:00:06 +05:30
|
|
|
{{template "base/footer" .}}
|