116. Adding user class properties (#13)

This commit is contained in:
Art
2021-09-12 22:13:25 +03:00
parent a62a6dab1d
commit f05f9c836a

View File

@ -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;
}