From f05f9c836aa289729ef2027fb118c5206bf2df20 Mon Sep 17 00:00:00 2001 From: Art Date: Sun, 12 Sep 2021 22:13:25 +0300 Subject: [PATCH] 116. Adding user class properties (#13) --- support-portal-frontend/src/app/model/user.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; }