From c4d3d1e11a767b5b76e6a2ba6828c02407615ab6 Mon Sep 17 00:00:00 2001
From: L4168 <L4168@student.jamk.fi>
Date: Fri, 5 Jul 2019 09:13:34 +0300
Subject: [PATCH] removed console.log

---
 src/shared/states.guard.ts | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/shared/states.guard.ts b/src/shared/states.guard.ts
index fb8a18f..4a4b5d4 100644
--- a/src/shared/states.guard.ts
+++ b/src/shared/states.guard.ts
@@ -22,7 +22,6 @@ export class StatesGuard implements CanActivate {
   async canActivate(context: ExecutionContext): Promise<boolean> {
     // get game states that are allowed access, identified by @GameStates('state') decorators in controllers
     const states = this.reflector.get<string[]>('states', context.getHandler());
-    console.log(states);
     if (!states) {
       return true;
     }
-- 
GitLab