X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fmodels%2FUserModel.ts;h=e49670a8cb7ef1c825d105cfb52d2a1148fe6e9d;hb=1b17c432991a95035a1732426f0c11db57e511c9;hp=64626c8e87bfad325d376b27ba54d1517ec656c4;hpb=50e53afdfc376c2055284bda4be1664acfe4fcee;p=osm%2FNG-UI.git diff --git a/src/models/UserModel.ts b/src/models/UserModel.ts index 64626c8..e49670a 100644 --- a/src/models/UserModel.ts +++ b/src/models/UserModel.ts @@ -37,6 +37,8 @@ export interface UserDetail { identifier: string; projectListName?: string; project_role_mappings?: ProjectRoleMappings[]; + account_expire_time: string; + password_expire_time?: string; } /** Interface for user role mappings */ @@ -50,6 +52,9 @@ interface Admin { salt: string; created: number; modified: number; + user_status?: string; + account_expire_time?: number; + password_expire_time?: number; } /** Interface for UserDetail */ export interface UserData { @@ -58,6 +63,8 @@ export interface UserData { modified: string; created: string; identifier: string; + user_status: string; + account_expire_time?: string; } /** Interface for Project Roles Mappings */