Update back/src/Controller/MapController.ts
authorgrégoire parant <g.parant@thecodingmachine.com>
Sun, 10 May 2020 12:48:34 +0000 (14:48 +0200)
committerGitHub <noreply@github.com>
Sun, 10 May 2020 12:48:34 +0000 (14:48 +0200)
Co-authored-by: David Négrier <d.negrier@thecodingmachine.com>
back/src/Controller/MapController.ts

index b7e5ffd9e2a3da93496b8b7618e56b2c811ac899..e8fe7236c803cb3e70780559bf159fbc22088b3a 100644 (file)
@@ -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
+}