[ACS-3255] Add basic dialog for create / update rule (#2568)

* [ACS-3255] Add basic dialog for create / update rule

* Remove test data

* Fix import

* Fix linting
This commit is contained in:
Thomas Hunter
2022-07-15 16:37:41 +01:00
committed by GitHub
parent 8312bf8d84
commit a9f1946a0a
17 changed files with 692 additions and 4 deletions

View File

@@ -47,7 +47,8 @@ export enum NodeActionTypes {
AddFavorite = 'ADD_FAVORITE',
RemoveFavorite = 'REMOVE_FAVORITE',
ChangeAspects = 'ASPECT_LIST',
ExpandInfoDrawer = 'EXPAND_INFO_DRAWER'
ExpandInfoDrawer = 'EXPAND_INFO_DRAWER',
ManageRules = 'MANAGE_RULES'
}
export class SetSelectedNodesAction implements Action {
@@ -173,3 +174,9 @@ export class ManageAspectsAction implements Action {
constructor(public payload: MinimalNodeEntity) {}
}
export class ManageRulesAction implements Action {
readonly type = NodeActionTypes.ManageRules;
constructor(public payload: MinimalNodeEntity) {}
}