| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package models
- import (
- "errors"
- "time"
- )
- // Typed errors
- var (
- ErrTempUserNotFound = errors.New("User not found")
- )
- // TempUser holds data for org invites and unconfirmed sign ups
- type TempUser struct {
- Id int64
- OrgId int64
- Version int
- Email string
- Name string
- Role RoleType
- IsInvite bool
- InvitedByUserId int64
- EmailSent bool
- EmailSentOn time.Time
- Code string
- Created time.Time
- Updated time.Time
- }
- // ---------------------
- // COMMANDS
- type CreateTempUserCommand struct {
- Email string
- Name string
- OrgId int64
- IsInvite bool
- InvitedByUserId int64
- Code string
- Role RoleType
- Result *TempUser
- }
- type GetTempUsersForOrgQuery struct {
- OrgId int64
- Result []*TempUserDTO
- }
- type TempUserDTO struct {
- Id int64 `json:"id"`
- Name string `json:"name"`
- Email string `json:"email"`
- Role string `json:"role"`
- InvitedBy string `json:"invitedBy"`
- EmailSent bool `json:"emailSent"`
- EmailSentOn time.Time `json:"emailSentOn"`
- Created time.Time `json:"createdOn"`
- }
|