diff --git a/libs/common/src/modules/client/client.repository.module 2.ts b/libs/common/src/modules/client/client.repository.module 2.ts deleted file mode 100644 index af1f3b0..0000000 --- a/libs/common/src/modules/client/client.repository.module 2.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Module } from '@nestjs/common'; -import { TypeOrmModule } from '@nestjs/typeorm'; -import { ClientEntity } from './entities'; - -@Module({ - imports: [TypeOrmModule.forFeature([ClientEntity])], - exports: [TypeOrmModule], -}) -export class ClientRepositoryModule {} diff --git a/libs/common/src/modules/client/dtos/client.dto 2.ts b/libs/common/src/modules/client/dtos/client.dto 2.ts deleted file mode 100644 index fd12bc9..0000000 --- a/libs/common/src/modules/client/dtos/client.dto 2.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { IsArray, IsNotEmpty, IsString } from 'class-validator'; - -export class ClientDto { - @IsString() - @IsNotEmpty() - public uuid: string; - - @IsString() - @IsNotEmpty() - public clientId: string; - @IsString() - @IsNotEmpty() - public clientSecret: string; - @IsString() - @IsNotEmpty() - public redirectUri: string; - @IsArray() - @IsNotEmpty() - public scopes: string[]; -} diff --git a/src/space/dtos/space.parents.dto 2.ts b/src/space/dtos/space.parents.dto 2.ts deleted file mode 100644 index 6858f55..0000000 --- a/src/space/dtos/space.parents.dto 2.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { SpaceEntity } from '@app/common/modules/space/entities/space.entity'; -import { Expose } from 'class-transformer'; - -export class SpaceWithParentsDto extends SpaceEntity { - @Expose() - lastThreeParents: string; -}