remove unused

This commit is contained in:
hannathkadher
2024-10-29 13:23:30 +04:00
parent 84bcf098d3
commit 00ed2c5bbf

View File

@ -1,7 +1,6 @@
import { Injectable, HttpException, HttpStatus } from '@nestjs/common'; import { Injectable, HttpException, HttpStatus } from '@nestjs/common';
import { AddCommunityDto } from '../dtos'; import { AddCommunityDto } from '../dtos';
import { UpdateCommunityNameDto } from '../dtos/update.community.dto'; import { UpdateCommunityNameDto } from '../dtos/update.community.dto';
import { UserSpaceRepository } from '@app/common/modules/user/repositories';
import { RegionRepository } from '@app/common/modules/region/repositories'; import { RegionRepository } from '@app/common/modules/region/repositories';
import { BaseResponseDto } from '@app/common/dto/base.response.dto'; import { BaseResponseDto } from '@app/common/dto/base.response.dto';
import { import {
@ -16,7 +15,6 @@ import { SuccessResponseDto } from '@app/common/dto/success.response.dto';
@Injectable() @Injectable()
export class CommunityService { export class CommunityService {
constructor( constructor(
private readonly userSpaceRepository: UserSpaceRepository,
private readonly communityRepository: CommunityRepository, private readonly communityRepository: CommunityRepository,
private readonly regionRepository: RegionRepository, private readonly regionRepository: RegionRepository,
) {} ) {}