diff options
Diffstat (limited to 'internal/route/home.go')
-rw-r--r-- | internal/route/home.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/internal/route/home.go b/internal/route/home.go index a389c080..2b12a15b 100644 --- a/internal/route/home.go +++ b/internal/route/home.go @@ -20,7 +20,6 @@ import ( ) const ( - HOME = "home" EXPLORE_REPOS = "explore/repos" EXPLORE_USERS = "explore/users" EXPLORE_ORGANIZATIONS = "explore/organizations" @@ -44,8 +43,7 @@ func Home(c *context.Context) { return } - c.Data["PageIsHome"] = true - c.Success(HOME) + ExploreRepos(c) } func ExploreRepos(c *context.Context) { |