diff options
author | Antoine GIRARD <sapk@users.noreply.github.com> | 2017-10-21 16:05:50 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-10-21 22:05:50 +0800 |
commit | 619b9b5547dab4f30acedbf816550df02bb3c1c5 (patch) | |
tree | 5a1cfbe2ab2d0723991dac8a8f69b8fe6a98f006 /routers/home.go | |
parent | bc8d72666c371cc674128011cede929d4ce1ae80 (diff) | |
download | gitea-619b9b5547dab4f30acedbf816550df02bb3c1c5.tar.gz gitea-619b9b5547dab4f30acedbf816550df02bb3c1c5.zip |
Move swagger-ui under /api/v1 (#2746)
* Move swagger interface under /api/v1
* Update swagger-ui
* Add /api/swagger and prepare for multiple api version
* Update test links
* Fix footer link
Diffstat (limited to 'routers/home.go')
-rw-r--r-- | routers/home.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/routers/home.go b/routers/home.go index cf957c1215..768eb22077 100644 --- a/routers/home.go +++ b/routers/home.go @@ -20,8 +20,6 @@ import ( const ( // tplHome home page template tplHome base.TplName = "home" - // tplSwagger swagger page template - tplSwagger base.TplName = "swagger" // tplExploreRepos explore repositories page template tplExploreRepos base.TplName = "explore/repos" // tplExploreUsers explore users page template @@ -53,11 +51,6 @@ func Home(ctx *context.Context) { ctx.HTML(200, tplHome) } -// Swagger render swagger-ui page -func Swagger(ctx *context.Context) { - ctx.HTML(200, tplSwagger) -} - // RepoSearchOptions when calling search repositories type RepoSearchOptions struct { OwnerID int64 |