feat(core): Add advancedFilters feature flag (#5638)

adds advancedFilters feature flag
This commit is contained in:
Michael Auerswald
2023-03-07 14:18:10 +01:00
committed by GitHub
parent 6c1286fadf
commit 0b5ef09e7c
6 changed files with 24 additions and 2 deletions

View File

@@ -106,6 +106,10 @@ export class License {
return this.isFeatureEnabled(LICENSE_FEATURES.SAML);
}
isAdvancedFiltersEnabled() {
return this.isFeatureEnabled(LICENSE_FEATURES.ADVANCED_FILTERS);
}
getCurrentEntitlements() {
return this.manager?.getCurrentEntitlements() ?? [];
}