[ACS-3895] ACA - Folder Rules: inherit rule sets toggle (#2808)

* ACS-3895 - initial layout

* ACS-3895 - finished functionality

* ACS-3895 - unit tests

* ACS-3895 - deleted comments

* ACS-3895 - small fixes

* ACS-3895 - renamed ruleSettings to ruleSettingsMock

* ACS-3895 - rebase
This commit is contained in:
Nikita Maliarchuk
2022-11-24 19:07:21 +01:00
committed by GitHub
parent 654aebe964
commit 60ba8eb6ce
10 changed files with 128 additions and 7 deletions

View File

@@ -23,7 +23,7 @@
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
*/
import { Rule } from '../model/rule.model';
import { Rule, RuleSettings } from '../model/rule.model';
import { RuleGroupingItem } from '../model/rule-grouping-item.model';
export const getRulesResponseMock = {
@@ -170,3 +170,8 @@ export const ruleListGroupingItemsMock: RuleGroupingItem[] = [
rule: ruleMock('rule2')
}
];
export const ruleSettingsMock: RuleSettings = {
value: false,
key: '-parameter-'
};