Merge pull request #12892 from ArtemDzhereleiko/AD/bug-fix/notification-center/rule/get-rule-chains

Fixed get rule chains for entity list component
This commit is contained in:
Igor Kulikov 2025-03-13 19:16:13 +02:00 committed by GitHub
commit 1e562a9c25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -287,6 +287,11 @@ export class EntityService {
case EntityType.OAUTH2_CLIENT:
observable = this.oauth2Service.findTenantOAuth2ClientInfosByIds(entityIds, config);
break;
case EntityType.RULE_CHAIN:
observable = this.getEntitiesByIdsObservable(
(id) => this.ruleChainService.getRuleChain(id, config),
entityIds);
break;
}
return observable;
}