Merge branch 'create-orphan-space-for-project' of https://github.com/SyncrowIOT/backend into feat/list-space-model

This commit is contained in:
hannathkadher
2024-12-19 11:57:31 +04:00
3 changed files with 6 additions and 7 deletions

View File

@ -23,13 +23,15 @@ export class CreateOrphanSpaceHandler
async execute(command: CreateOrphanSpaceCommand): Promise<void> {
try {
const { project } = command;
const orphanCommunityName = `${ORPHAN_COMMUNITY_NAME}-${project.name}`;
let orphanCommunity = await this.communityRepository.findOne({
where: { name: ORPHAN_COMMUNITY_NAME, project },
where: { name: orphanCommunityName, project },
});
if (!orphanCommunity) {
orphanCommunity = this.communityRepository.create({
name: ORPHAN_COMMUNITY_NAME,
name: orphanCommunityName,
description: ORPHAN_COMMUNITY_DESCRIPTION,
project,
});