Set correct doc url for go-sdk

pull/108/head
Thomas Boerger 9 years ago
parent 1b962bac0b
commit 6bf9910975
No known key found for this signature in database
GPG Key ID: 5A388F55283960B6
  1. 2
      modules/base/base.go
  2. 2
      modules/context/api.go

@ -4,7 +4,7 @@
package base package base
const DOC_URL = "https://github.com/gogits/go-gogs-client/wiki" const DocURL = "https://godoc.org/github.com/go-gitea/go-sdk"
type ( type (
TplName string TplName string

@ -36,7 +36,7 @@ func (ctx *APIContext) Error(status int, title string, obj interface{}) {
ctx.JSON(status, map[string]string{ ctx.JSON(status, map[string]string{
"message": message, "message": message,
"url": base.DOC_URL, "url": base.DocURL,
}) })
} }

Loading…
Cancel
Save