src/app/core/models/auth/action.type.ts
Properties |
|
Readonly Static CompaniesManagement |
CompaniesManagement:
|
Type : Action
|
Default value : 'CompaniesManagement'
|
Defined in src/app/core/models/auth/action.type.ts:6
|
Readonly Static CompanyManagement |
CompanyManagement:
|
Type : Action
|
Default value : 'CompanyManagement'
|
Defined in src/app/core/models/auth/action.type.ts:15
|
Readonly Static CreateCompany |
CreateCompany:
|
Type : Action
|
Default value : 'CreateCompany'
|
Defined in src/app/core/models/auth/action.type.ts:14
|
Readonly Static CreateCompanyManagerUser |
CreateCompanyManagerUser:
|
Type : Action
|
Default value : 'CreateCompanyManagerUser'
|
Defined in src/app/core/models/auth/action.type.ts:5
|
Readonly Static CreateManagerUser |
CreateManagerUser:
|
Type : Action
|
Default value : 'CreateManagerUser'
|
Defined in src/app/core/models/auth/action.type.ts:7
|
Readonly Static CreateRootUser |
CreateRootUser:
|
Type : Action
|
Default value : 'CreateRootUser'
|
Defined in src/app/core/models/auth/action.type.ts:4
|
Readonly Static Deploying |
Deploying:
|
Type : Action
|
Default value : 'Deploying'
|
Defined in src/app/core/models/auth/action.type.ts:10
|
Readonly Static InviteUser |
InviteUser:
|
Type : Action
|
Default value : 'InviteUser'
|
Defined in src/app/core/models/auth/action.type.ts:13
|
Readonly Static Invoicing |
Invoicing:
|
Type : Action
|
Default value : 'Invoicing'
|
Defined in src/app/core/models/auth/action.type.ts:11
|
Readonly Static OrdersManagement |
OrdersManagement:
|
Type : Action
|
Default value : 'OrdersManagement'
|
Defined in src/app/core/models/auth/action.type.ts:8
|
Readonly Static Reports |
Reports:
|
Type : Action
|
Default value : 'Reports'
|
Defined in src/app/core/models/auth/action.type.ts:9
|
Readonly Static Testing |
Testing:
|
Type : Action
|
Default value : 'Testing'
|
Defined in src/app/core/models/auth/action.type.ts:12
|
Readonly Static UsersManagement |
UsersManagement:
|
Type : Action
|
Default value : 'UsersManagement'
|
Defined in src/app/core/models/auth/action.type.ts:3
|
export class Actions {
static readonly UsersManagement: Action = 'UsersManagement';
static readonly CreateRootUser: Action = 'CreateRootUser';
static readonly CreateCompanyManagerUser: Action = 'CreateCompanyManagerUser';
static readonly CompaniesManagement: Action = 'CompaniesManagement';
static readonly CreateManagerUser: Action = 'CreateManagerUser';
static readonly OrdersManagement: Action = 'OrdersManagement';
static readonly Reports: Action = 'Reports';
static readonly Deploying: Action = 'Deploying';
static readonly Invoicing: Action = 'Invoicing';
static readonly Testing: Action = 'Testing';
static readonly InviteUser: Action = 'InviteUser';
static readonly CreateCompany: Action = 'CreateCompany';
static readonly CompanyManagement: Action = 'CompanyManagement'
}
export type Action = 'UsersManagement' |
'CreateRootUser' |
'CreateCompanyManagerUser' |
'CompaniesManagement' |
'CreateManagerUser' |
'OrdersManagement' |
'Reports' |
'Deploying' |
'Invoicing' |
'Testing' |
'InviteUser' |
'CreateCompany' |
'CompanyManagement'