game designer

This commit is contained in:
2025-03-20 17:17:50 +02:00
parent 73ca07bcc0
commit 14f97924d3
11 changed files with 291 additions and 83 deletions
+1 -1
View File
@@ -62,7 +62,7 @@ class GamesController{
* @memberof GamesController
*/
router.delete('/:id', async (req, res)=>{
await scenario.remove(req.params.id);
await game.remove(req.params.id);
res.json({status: 'OK'});
})