From 2253581b1ebc5a0dd2c0826ed97d9e549bba9402 Mon Sep 17 00:00:00 2001 From: Antonin Coquet <ext.sopra.acoquet@grandlyon.com> Date: Thu, 6 May 2021 11:09:39 +0200 Subject: [PATCH] fix: remove useless import --- src/structures/schemas/structure.schema.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/structures/schemas/structure.schema.ts b/src/structures/schemas/structure.schema.ts index 718d4bb03..fdd977bfc 100644 --- a/src/structures/schemas/structure.schema.ts +++ b/src/structures/schemas/structure.schema.ts @@ -1,5 +1,4 @@ import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'; -import { Exclude } from 'class-transformer'; import { Document } from 'mongoose'; import { Address } from './address.schema'; import { Week } from './week.schema'; @@ -30,7 +29,6 @@ export class Structure { lockdownActivity: string; @Prop() - @Exclude() address: Address; @Prop() -- GitLab