Added logic to show createdAt & modifiedAt in auth user list #78

This commit is contained in:
2023-02-16 17:00:55 +01:00
parent 3844240930
commit 6c0b48a941
8 changed files with 250 additions and 191 deletions

View File

@@ -8,4 +8,6 @@ export interface AuthUserDTO {
password: string | null;
isConfirmed?: boolean
authRole?: AuthRoles;
}
createdAt?: string;
modifiedAt?: string;
}