mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[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:
@@ -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) {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user