Merge pull request #420 from JagjeevanAK/jagjeevan/372

fix: updated server endpoint from `/vms/push` to `/lume/vms/push`
This commit is contained in:
James Murdza
2025-09-22 15:07:16 -04:00
committed by GitHub

View File

@@ -294,7 +294,7 @@ final class Server {
return try await self.handleSetDefaultLocation(name)
}),
Route(
method: "POST", path: "/vms/push",
method: "POST", path: "/lume/vms/push",
handler: { [weak self] request in
guard let self else { throw HTTPError.internalError }
return try await self.handlePush(request.body)