summaryrefslogtreecommitdiffstats
path: root/routers/home.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/home.go')
-rw-r--r--routers/home.go7
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