From 929bb37728c60ccf2fd3982009bd36bb86ae9d78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?gr=C3=A9goire=20parant?= Date: Sun, 10 May 2020 14:48:34 +0200 Subject: [PATCH] Update back/src/Controller/MapController.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: David NĂ©grier --- back/src/Controller/MapController.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/back/src/Controller/MapController.ts b/back/src/Controller/MapController.ts index b7e5ffd9..e8fe7236 100644 --- a/back/src/Controller/MapController.ts +++ b/back/src/Controller/MapController.ts @@ -17,7 +17,7 @@ export class MapController { this.App.use('/map/files', express.static('src/Assets/Maps')); } - //permit to login on application. Return token to connect on Websocket IO. + // Returns a map mapping map name to file name of the map getMpas() { this.App.get("/maps", (req: Request, res: Response) => { return res.status(OK).send({ @@ -26,4 +26,4 @@ export class MapController { }); }); } -} \ No newline at end of file +}