X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fmodels%2FCommonModel.ts;h=abf0cb62f5ab9957c3b6a8426b451108291f483c;hb=1b17c432991a95035a1732426f0c11db57e511c9;hp=ed3502961e02fedefdd3a17d5f1d764d5653ebda;hpb=50e53afdfc376c2055284bda4be1664acfe4fcee;p=osm%2FNG-UI.git diff --git a/src/models/CommonModel.ts b/src/models/CommonModel.ts index ed35029..abf0cb6 100644 --- a/src/models/CommonModel.ts +++ b/src/models/CommonModel.ts @@ -73,7 +73,11 @@ export enum CONFIGCONSTANT { k8OperationalStateStateSecondStep = 'ENABLED', k8OperationalStateThirdStep = 'ERROR', done = 'done', - close = 'close' + close = 'close', + userActive = 'active', + userLocked = 'locked', + userExpired = 'expired', + userAlwaysActive = 'always-active' } /** Interface for Post options */ export interface POSTAPIRESOURCE { @@ -342,3 +346,9 @@ export interface LABELVALUE { label: string; value: string; } +/** Interface for Login */ +export interface UNLOCKPARAMS { + system_admin_id?: string; + unlock?: boolean; + renew?: boolean; +}