Add the ability to explore organizations (#3573)

* Add ability to explore organizations

* Use right icon for org explore links
This commit is contained in:
Daniel Oaks 2016-09-01 23:08:05 +10:00 committed by 无闻
parent 4efaf8e882
commit b3d9ca4ccd
6 changed files with 940 additions and 1104 deletions

View file

@ -214,6 +214,7 @@ func runWeb(ctx *cli.Context) error {
})
m.Get("/repos", routers.ExploreRepos)
m.Get("/users", routers.ExploreUsers)
m.Get("/organizations", routers.ExploreOrganizations)
}, ignSignIn)
m.Combo("/install", routers.InstallInit).Get(routers.Install).
Post(bindIgnErr(auth.InstallForm{}), routers.InstallPost)