aboutsummaryrefslogtreecommitdiffstats
path: root/routers/web
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2023-08-27 19:59:12 +0800
committerGitHub <noreply@github.com>2023-08-27 11:59:12 +0000
commit476b9d1589248b7bca6fb0f01825bd6955318cb3 (patch)
tree55edc01e26397829c48e734c3af993d98439e729 /routers/web
parente0a796a6410f7a540e2bc16ac5e386305c9321d1 (diff)
downloadgitea-476b9d1589248b7bca6fb0f01825bd6955318cb3.tar.gz
gitea-476b9d1589248b7bca6fb0f01825bd6955318cb3.zip
Use docs.gitea.com instead of docs.gitea.io (#26739)
Diffstat (limited to 'routers/web')
-rw-r--r--routers/web/repo/setting/webhook.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/repo/setting/webhook.go b/routers/web/repo/setting/webhook.go
index bbcc36ee60..33ea2c206b 100644
--- a/routers/web/repo/setting/webhook.go
+++ b/routers/web/repo/setting/webhook.go
@@ -44,7 +44,7 @@ func Webhooks(ctx *context.Context) {
ctx.Data["PageIsSettingsHooks"] = true
ctx.Data["BaseLink"] = ctx.Repo.RepoLink + "/settings/hooks"
ctx.Data["BaseLinkNew"] = ctx.Repo.RepoLink + "/settings/hooks"
- ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://docs.gitea.io/en-us/webhooks/")
+ ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://docs.gitea.com/usage/webhooks")
ws, err := webhook.ListWebhooksByOpts(ctx, &webhook.ListWebhookOptions{RepoID: ctx.Repo.Repository.ID})
if err != nil {