summaryrefslogtreecommitdiffstats
path: root/routers/routes
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@users.noreply.github.com>2017-10-21 16:05:50 +0200
committerLunny Xiao <xiaolunwen@gmail.com>2017-10-21 22:05:50 +0800
commit619b9b5547dab4f30acedbf816550df02bb3c1c5 (patch)
tree5a1cfbe2ab2d0723991dac8a8f69b8fe6a98f006 /routers/routes
parentbc8d72666c371cc674128011cede929d4ce1ae80 (diff)
downloadgitea-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/routes')
-rw-r--r--routers/routes/routes.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/routers/routes/routes.go b/routers/routes/routes.go
index 749f8263f8..46521130f8 100644
--- a/routers/routes/routes.go
+++ b/routers/routes/routes.go
@@ -160,7 +160,6 @@ func RegisterRoutes(m *macaron.Macaron) {
return ""
})
m.Get("/", ignSignIn, routers.Home)
- m.Get("/swagger", ignSignIn, routers.Swagger)
m.Group("/explore", func() {
m.Get("", func(ctx *context.Context) {
ctx.Redirect(setting.AppSubURL + "/explore/repos")