Changed from goconfig to its new counter part go-ini

This commit is contained in:
Torkel Ödegaard
2015-01-27 10:09:54 +01:00
parent 951ce0a102
commit 95305e7e11
6 changed files with 99 additions and 65 deletions

View File

@@ -22,7 +22,7 @@ func Register(r *macaron.Macaron) {
r.Post("/logout", LogoutPost)
r.Post("/login", bind(dtos.LoginCommand{}), LoginPost)
r.Get("/login/:name", OAuthLogin)
r.Get("/login", Index)
r.Get("/login", LoginView)
// authed views
r.Get("/profile/", reqSignedIn, Index)