feat(invite): new user invites are now also added to correct org after sign up is completed, #2353

This commit is contained in:
Torkel Ödegaard
2015-08-11 10:45:03 +02:00
parent 74932e6311
commit 1ea0b5371a
3 changed files with 15 additions and 1 deletions
+2 -1
View File
@@ -75,9 +75,10 @@ type GetTempUserByCodeQuery struct {
type TempUserDTO struct {
Id int64 `json:"id"`
OrgId int64 `json:"orgId"`
Name string `json:"name"`
Email string `json:"email"`
Role string `json:"role"`
Role RoleType `json:"role"`
InvitedByLogin string `json:"invitedByLogin"`
InvitedByEmail string `json:"invitedByEmail"`
InvitedByName string `json:"invitedByName"`