From 0ea1ae7d8ca989caf6b2a58f7da3ad32ce57392d Mon Sep 17 00:00:00 2001
From: Jeremie BRISON <ext.sopra.jbrison@grandlyon.com>
Date: Mon, 15 Feb 2021 11:32:48 +0100
Subject: [PATCH] fix(property) : remove freeWifi

---
 src/structures/dto/structure.dto.ts        | 2 --
 src/structures/schemas/structure.schema.ts | 3 ---
 2 files changed, 5 deletions(-)

diff --git a/src/structures/dto/structure.dto.ts b/src/structures/dto/structure.dto.ts
index 621cf1425..b4e417214 100644
--- a/src/structures/dto/structure.dto.ts
+++ b/src/structures/dto/structure.dto.ts
@@ -47,8 +47,6 @@ export class structureDto {
   @ArrayNotEmpty()
   publics: string[];
   @IsNotEmpty()
-  freeWifi: boolean;
-  @IsNotEmpty()
   freeWorkShop: boolean;
   @IsNotEmpty()
   nbComputers: number;
diff --git a/src/structures/schemas/structure.schema.ts b/src/structures/schemas/structure.schema.ts
index b782161cb..c18f9cdcc 100644
--- a/src/structures/schemas/structure.schema.ts
+++ b/src/structures/schemas/structure.schema.ts
@@ -93,9 +93,6 @@ export class Structure {
   @Prop()
   equipmentsAndServices: string[];
 
-  @Prop()
-  freeWifi: boolean;
-
   @Prop()
   freeWorkShop: boolean;
 
-- 
GitLab