ui(admin): add user create and user update

This commit is contained in:
Matthew Penner 2021-07-24 12:23:33 -06:00
parent 1d290919b7
commit 27c93365e9
6 changed files with 299 additions and 7 deletions

View file

@ -15,6 +15,7 @@ export interface User {
rootAdmin: boolean;
tfa: boolean;
avatarURL: string;
roleId: number | null;
roleName: string | null;
createdAt: Date;
updatedAt: Date;
@ -32,6 +33,7 @@ export const rawDataToUser = ({ attributes }: FractalResponseData): User => ({
rootAdmin: attributes.root_admin,
tfa: attributes['2fa'],
avatarURL: attributes.avatar_url,
roleId: attributes.role_id,
roleName: attributes.role_name,
createdAt: new Date(attributes.created_at),
updatedAt: new Date(attributes.updated_at),