mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
828a27feeb
* Add Matrix webhook Signed-off-by: Till Faelligen <tfaelligen@gmail.com> * Add template and related translations for Matrix hook Signed-off-by: Till Faelligen <tfaelligen@gmail.com> * Add actual webhook routes and form Signed-off-by: Till Faelligen <tfaelligen@gmail.com> * Add missing file Signed-off-by: Till Faelligen <tfaelligen@gmail.com> * Update modules/webhook/matrix_test.go * Use stricter regex to replace URLs Signed-off-by: Till Faelligen <tfaelligen@gmail.com> * Escape url and text Signed-off-by: Till Faelligen <tfaelligen@gmail.com> * Remove unnecessary whitespace * Fix copy and paste mistake Co-Authored-By: Tulir Asokan <tulir@maunium.net> * Fix indention inconsistency * Use Authorization header instead of url parameter * Add raw commit information to webhook Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: Tulir Asokan <tulir@maunium.net>
47 lines
1.9 KiB
Cheetah
47 lines
1.9 KiB
Cheetah
{{template "base/head" .}}
|
|
<div class="repository settings new webhook">
|
|
{{template "repo/header" .}}
|
|
{{template "repo/settings/navbar" .}}
|
|
<div class="ui container">
|
|
{{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">
|
|
{{if eq .HookType "gitea"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/gitea-sm.png">
|
|
{{else if eq .HookType "gogs"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/gogs.ico">
|
|
{{else if eq .HookType "slack"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/slack.png">
|
|
{{else if eq .HookType "discord"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/discord.png">
|
|
{{else if eq .HookType "dingtalk"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/dingtalk.ico">
|
|
{{else if eq .HookType "telegram"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/telegram.png">
|
|
{{else if eq .HookType "msteams"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/msteams.png">
|
|
{{else if eq .HookType "feishu"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/feishu.png">
|
|
{{else if eq .HookType "matrix"}}
|
|
<img class="img-13" src="{{StaticUrlPrefix}}/img/matrix.svg">
|
|
{{end}}
|
|
</div>
|
|
</h4>
|
|
<div class="ui attached segment">
|
|
{{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" .}}
|
|
{{template "repo/settings/webhook/telegram" .}}
|
|
{{template "repo/settings/webhook/msteams" .}}
|
|
{{template "repo/settings/webhook/feishu" .}}
|
|
{{template "repo/settings/webhook/matrix" .}}
|
|
</div>
|
|
|
|
{{template "repo/settings/webhook/history" .}}
|
|
</div>
|
|
</div>
|
|
{{template "base/footer" .}}
|