From 2010e631f2ba84f160ed0857bb8b5837b65e6573 Mon Sep 17 00:00:00 2001 From: hannathkadher Date: Wed, 16 Apr 2025 10:42:20 +0400 Subject: [PATCH] filter for not deleted space --- src/community/services/community.service.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/community/services/community.service.ts b/src/community/services/community.service.ts index 9f855aa..4debb98 100644 --- a/src/community/services/community.service.ts +++ b/src/community/services/community.service.ts @@ -108,6 +108,7 @@ export class CommunityService { const matchingSpaces = await this.spaceRepository.find({ where: { spaceName: ILike(`%${pageable.search}%`), + disabled: false, community: { project: { uuid: param.projectUuid } }, }, relations: ['community'],