-
Notifications
You must be signed in to change notification settings - Fork 3
Voyage App: User Services Sync #85
Copy link
Copy link
Open
Labels
Description
/src/app/core/user/user.service.ts
- /profiles/me
- GET User object
- PUT User object
- /users
- GET list of User objects
- /users/${userId}/account-status
- PUT a UserStatus object
User
- email: string;
- firstName: string;
- lastName: string;
- username: string;
- id: string;
- isActive: boolean;
- isVerifyRequired: boolean;
- roles: Array;
- phones: Array;
- profileImage: string;
UserStatus
- isActive: boolean;
- isVerifyRequired: boolean;
Phone
- phoneNumber: string;
- phoneType: number;
Reactions are currently unavailable