Commit 37ad58c6 by Torkel Ödegaard

fix(gofmt): somehow api.go did not pass gofmt test

parent de753bf3
...@@ -17,7 +17,7 @@ func Register(r *macaron.Macaron) { ...@@ -17,7 +17,7 @@ func Register(r *macaron.Macaron) {
bind := binding.Bind bind := binding.Bind
// not logged in views // not logged in views
r.Get("/", reqSignedIn, Index) r.Get("/", reqSignedIn, Index)
r.Get("/logout", Logout) r.Get("/logout", Logout)
r.Post("/login", bind(dtos.LoginCommand{}), wrap(LoginPost)) r.Post("/login", bind(dtos.LoginCommand{}), wrap(LoginPost))
r.Get("/login/:name", OAuthLogin) r.Get("/login/:name", OAuthLogin)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment