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
+4 -3
View File
@@ -10,9 +10,10 @@ type AddInviteForm struct {
}
type InviteInfo struct {
Email string `json:"email"`
Name string `json:"name"`
Username string `json:"username"`
Email string `json:"email"`
Name string `json:"name"`
Username string `json:"username"`
InvitedBy string `json:"invitedBy"`
}
type CompleteInviteForm struct {