adding full support for Gogs including private repositories

This commit is contained in:
Brad Rydzewski
2015-10-22 16:36:43 -07:00
parent 22fc0e3bf8
commit d376730226
18 changed files with 659 additions and 36 deletions

View File

@@ -32,6 +32,7 @@ func Load(middleware ...gin.HandlerFunc) http.Handler {
e.GET("/", cache.Repos, controller.ShowIndex)
e.GET("/login", controller.ShowLogin)
e.GET("/login/form", controller.ShowLoginForm)
e.GET("/logout", controller.GetLogout)
settings := e.Group("/settings")