repo: fix stale webhook documentation link (#5883)

pull/5890/head
Kevin Gentile 2019-12-09 17:20:04 -05:00 committed by Unknwon
parent 6b9b42bbdf
commit 1b929e3afc
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import (
"fmt"
"strings"
"github.com/json-iterator/go"
jsoniter "github.com/json-iterator/go"
"github.com/unknwon/com"
git "github.com/gogs/git-module"
@ -31,7 +31,7 @@ func Webhooks(c *context.Context) {
c.Data["Title"] = c.Tr("repo.settings.hooks")
c.Data["PageIsSettingsHooks"] = true
c.Data["BaseLink"] = c.Repo.RepoLink
c.Data["Description"] = c.Tr("repo.settings.hooks_desc", "https://github.com/gogs/go-gogs-client/wiki/Repositories-Webhooks")
c.Data["Description"] = c.Tr("repo.settings.hooks_desc", "https://github.com/gogs/docs-api/blob/master/Repositories/Webhooks.md")
c.Data["Types"] = setting.Webhook.Types
ws, err := db.GetWebhooksByRepoID(c.Repo.Repository.ID)