From bdcce16dfd7616637c08dd6e165248a7b67a6275 Mon Sep 17 00:00:00 2001 From: Samuli Virtapohja <l4721@student.jamk.fi> Date: Fri, 14 Jun 2019 10:01:51 +0300 Subject: [PATCH] requires database coordination --- src/mapmarkers/mapmarkers.controller.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mapmarkers/mapmarkers.controller.ts b/src/mapmarkers/mapmarkers.controller.ts index e035f9e..5336584 100644 --- a/src/mapmarkers/mapmarkers.controller.ts +++ b/src/mapmarkers/mapmarkers.controller.ts @@ -32,7 +32,6 @@ export class MapMarkersController { } @Get('test') - async test(){ try { return this.mapmarkerservice.test(); @@ -41,10 +40,9 @@ export class MapMarkersController { } } @Get('testroles') - @Roles('admin') + @Roles('gm') async testroles(){ try { - return Roles.toString(); return this.mapmarkerservice.test(); } catch (error) { return error.message; -- GitLab