Remove middleware to secure access API.

This commit is contained in:
gparant 2020-05-10 17:31:27 +02:00
parent 029a7a9a64
commit 69777ad1cb
5 changed files with 38 additions and 60 deletions

View file

@ -1,5 +1,4 @@
import express from "express";
import path from "path";
import {Application, Request, Response} from "express";
import {OK} from "http-status-codes";
import {ROOM_STARTED, ROOMS, URL_ROOM_STARTED} from "../Enum/EnvironmentVariable";
@ -9,7 +8,7 @@ export class MapController {
constructor(App: Application) {
this.App = App;
this.getMpas();
this.getMaps();
this.assetMaps();
}