feat(invite): progress on invite feature, #2353

This commit is contained in:
Torkel Ödegaard
2015-08-10 13:47:06 +02:00
parent 93b8287d23
commit 775e044e69
13 changed files with 323 additions and 293 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ func Register(r *macaron.Macaron) {
r.Post("/login", bind(dtos.LoginCommand{}), wrap(LoginPost))
r.Get("/login/:name", OAuthLogin)
r.Get("/login", LoginView)
r.Get("/invite", Index)
r.Get("/invite/:code", Index)
// authed views
r.Get("/profile/", reqSignedIn, Index)