From 5067ca04da73a997f665e21bee3bfeed688a49cb Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Wed, 21 Jun 2023 04:58:26 -0400 Subject: [PATCH] fix(striker-ui-api): allow set map network to be requested without UUID --- striker-ui-api/src/routes/command.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/striker-ui-api/src/routes/command.ts b/striker-ui-api/src/routes/command.ts index adec9e1d..e451a73b 100644 --- a/striker-ui-api/src/routes/command.ts +++ b/striker-ui-api/src/routes/command.ts @@ -28,6 +28,7 @@ router .put('/poweroff-host', poweroffStriker) .put('/reboot-host', rebootStriker) .put('/run-manifest/:manifestUuid', runManifest) + .put('/set-map-network', setMapNetwork) .put('/set-map-network/:uuid', setMapNetwork) .put('/start-an/:uuid', startAn) .put('/start-server/:uuid', startServer)