diff --git a/support-portal-frontend/src/app/model/user.ts b/support-portal-frontend/src/app/model/user.ts index 0186df9..37ba7a6 100644 --- a/support-portal-frontend/src/app/model/user.ts +++ b/support-portal-frontend/src/app/model/user.ts @@ -5,11 +5,10 @@ export class User { username: string; email: string; profileImageUrl: string; - lastLoginDate: Date; lastLoginDateDisplay: Date; joinDate: Date; role: string; //ROLE_USER, ROLE_ADMIN authorities: string[]; - isActive: boolean; - isNotLocked: boolean; + active: boolean; + notLocked: boolean; }