diff options
author | Rémy Boulanouar <rboulanouar@gmail.com> | 2017-05-29 09:17:15 +0200 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-05-29 02:17:15 -0500 |
commit | e0c6ab2d44d17b72a7ea6f8b4c829c42baeaae3b (patch) | |
tree | 44e906f5ac3a322832e5d9a55ea59bf613d36b24 /templates/repo/settings/hook_list.tmpl | |
parent | e67ece26f0b97437200998b9b153b4c3a87a65aa (diff) | |
download | gitea-e0c6ab2d44d17b72a7ea6f8b4c829c42baeaae3b.tar.gz gitea-e0c6ab2d44d17b72a7ea6f8b4c829c42baeaae3b.zip |
Add Gitea Webhook (#1755)
* Replace Gogs by Gitea
* Fix missing changes
* Create Gitea webhook and put Gogs webhook apart.
Diffstat (limited to 'templates/repo/settings/hook_list.tmpl')
-rw-r--r-- | templates/repo/settings/hook_list.tmpl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/repo/settings/hook_list.tmpl b/templates/repo/settings/hook_list.tmpl index 0b9c4d5057..aba948b952 100644 --- a/templates/repo/settings/hook_list.tmpl +++ b/templates/repo/settings/hook_list.tmpl @@ -5,9 +5,12 @@ <div class="ui floating1 jump dropdown"> <div class="ui blue tiny button">{{.i18n.Tr "repo.settings.add_webhook"}}</div> <div class="menu"> - <a class="item" href="{{.BaseLink}}/settings/hooks/gogs/new"> + <a class="item" href="{{.BaseLink}}/settings/hooks/gitea/new"> <img class="img-10" src="{{AppSubUrl}}/img/favicon.png">Gitea </a> + <a class="item" href="{{.BaseLink}}/settings/hooks/gogs/new"> + <img class="img-10" src="{{AppSubUrl}}/img/gogs.ico">Gogs + </a> <a class="item" href="{{.BaseLink}}/settings/hooks/slack/new"> <img class="img-10" src="{{AppSubUrl}}/img/slack.png">Slack </a> |