diff options
author | Elouan Martinet <exa@elou.world> | 2018-01-03 16:50:09 +0100 |
---|---|---|
committer | Bo-Yi Wu <appleboy.tw@gmail.com> | 2018-01-03 23:50:09 +0800 |
commit | 5057c6b43fb88e914ec7144985492e5b88cba29a (patch) | |
tree | 0e01bdd57dc96d407a569bfcaafc888a3e7f19e1 /routers | |
parent | daf08aeacdb6f7c430798ab73db0e696b9a5db65 (diff) | |
download | gitea-5057c6b43fb88e914ec7144985492e5b88cba29a.tar.gz gitea-5057c6b43fb88e914ec7144985492e5b88cba29a.zip |
Fix guide link for webhooks in repository settings (#3291) (#3292)
Signed-off-by: Elouan Martinet <exa@elou.world>
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/webhook.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index 1bff139528..8fdc32849d 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -33,7 +33,7 @@ func Webhooks(ctx *context.Context) { ctx.Data["Title"] = ctx.Tr("repo.settings.hooks") ctx.Data["PageIsSettingsHooks"] = true ctx.Data["BaseLink"] = ctx.Repo.RepoLink - ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://godoc.org/code.gitea.io/sdk/gitea") + ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://docs.gitea.io/en-us/webhooks/") ws, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID) if err != nil { |