Merge pull request #99 from thecodingmachine/map_history

Adding support for history API
This commit is contained in:
David Négrier
2020-05-13 11:03:49 +02:00
committed by GitHub
14 changed files with 103 additions and 42 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ export class MapController {
getMaps() {
this.App.get("/maps", (req: Request, res: Response) => {
return res.status(OK).send({
mapUrlStart: URL_ROOM_STARTED
mapUrlStart: req.headers.host + "/map/files" + URL_ROOM_STARTED
});
});
}