refactor: finished timepicker to typescript and directive refactor

This commit is contained in:
Torkel Ödegaard
2015-09-12 12:52:50 +02:00
parent d96a6a59ee
commit 9db6f82628
7 changed files with 250 additions and 203 deletions

View File

@@ -17,7 +17,7 @@ func Register(r *macaron.Macaron) {
bind := binding.Bind
// not logged in views
r.Get("/", reqSignedIn, Index)
r.Get("/", reqSignedIn, Index)
r.Get("/logout", Logout)
r.Post("/login", bind(dtos.LoginCommand{}), wrap(LoginPost))
r.Get("/login/:name", OAuthLogin)