summaryrefslogtreecommitdiffstats
path: root/templates/repo/settings/hook_discord.tmpl
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2017-08-28 13:06:45 +0800
committerGitHub <noreply@github.com>2017-08-28 13:06:45 +0800
commitced50e0ec13085504fa19c82f018a2eecb70ff68 (patch)
tree10dff3ff685a86bad683c731f8329743f217617e /templates/repo/settings/hook_discord.tmpl
parente41da3845d72e3adc7ae2cd3a02fc1f3943ebee6 (diff)
downloadgitea-ced50e0ec13085504fa19c82f018a2eecb70ff68.tar.gz
gitea-ced50e0ec13085504fa19c82f018a2eecb70ff68.zip
Implementation of discord webhook (#2402)
* implementation of discord webhook * fix webhooks * fix typo and unnecessary color values * fix typo * fix imports and revert changes to webhook_slack.go
Diffstat (limited to 'templates/repo/settings/hook_discord.tmpl')
-rw-r--r--templates/repo/settings/hook_discord.tmpl19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/repo/settings/hook_discord.tmpl b/templates/repo/settings/hook_discord.tmpl
new file mode 100644
index 0000000000..901e7e6311
--- /dev/null
+++ b/templates/repo/settings/hook_discord.tmpl
@@ -0,0 +1,19 @@
+{{if eq .HookType "discord"}}
+ <p>{{.i18n.Tr "repo.settings.add_discord_hook_desc" "https://discordapp.com" | Str2html}}</p>
+ <form class="ui form" action="{{.BaseLink}}/settings/hooks/discord/{{if .PageIsSettingsHooksNew}}new{{else}}{{.Webhook.ID}}{{end}}" method="post">
+ {{.CsrfTokenHtml}}
+ <div class="required field {{if .Err_PayloadURL}}error{{end}}">
+ <label for="payload_url">{{.i18n.Tr "repo.settings.payload_url"}}</label>
+ <input id="payload_url" name="payload_url" type="url" value="{{.Webhook.URL}}" autofocus required>
+ </div>
+ <div class="field">
+ <label for="username">{{.i18n.Tr "repo.settings.discord_username"}}</label>
+ <input id="username" name="username" value="{{.DiscordHook.Username}}" placeholder="e.g. Gitea">
+ </div>
+ <div class="field">
+ <label for="icon_url">{{.i18n.Tr "repo.settings.discord_icon_url"}}</label>
+ <input id="icon_url" name="icon_url" value="{{.DiscordHook.IconURL}}" placeholder="e.g. https://example.com/img/favicon.png">
+ </div>
+ {{template "repo/settings/hook_settings" .}}
+ </form>
+{{end}}