(email string, organizationName string, password string)
| 8 | |
| 9 | type IdentityRepo interface { |
| 10 | CreateUserWithOrganization(email string, organizationName string, password string) (*dm.OrganizationUser, error) |
| 11 | CreateUser(email string, password string) (*dm.User, error) |
| 12 | AddRoleToOrganizationUser(organizationUserId string, roleKey string) error |
| 13 |
no outgoing calls