diff options
author | Thomas Boerger <thomas@webhippie.de> | 2016-11-07 16:31:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 16:31:17 +0100 |
commit | 5d430c9e68f7e50e6d1727c43518e84579fd6a4f (patch) | |
tree | 8b4c8058aa6d24f7e1bf5637327bfee229cc85f7 /modules/context/api.go | |
parent | ee963f67c1eb023b6ed70a2c0f14c6d3c927b8ac (diff) | |
parent | 4c6c16f358a67d31b1cde8642d4175a336fdcbf0 (diff) | |
download | gitea-5d430c9e68f7e50e6d1727c43518e84579fd6a4f.tar.gz gitea-5d430c9e68f7e50e6d1727c43518e84579fd6a4f.zip |
Merge pull request #108 from go-gitea/go-sdk
Replaced gogits go-gogs-client with go-sdk
Diffstat (limited to 'modules/context/api.go')
-rw-r--r-- | modules/context/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/context/api.go b/modules/context/api.go index dfd9a57818..1ae11f63fb 100644 --- a/modules/context/api.go +++ b/modules/context/api.go @@ -36,7 +36,7 @@ func (ctx *APIContext) Error(status int, title string, obj interface{}) { ctx.JSON(status, map[string]string{ "message": message, - "url": base.DOC_URL, + "url": base.DocURL, }) } |