diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 895af2ea2..dd4680e40 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,7 +10,6 @@ "features": { "ghcr.io/azure/azure-dev/azd:latest": {}, "ghcr.io/devcontainers/features/node:1": { - // NOTE: See https://github.com/Azure-Samples/contoso-real-estate/pull/191 "version": "18.15.0" }, "ghcr.io/devcontainers-contrib/features/postgres-asdf:1": {}, diff --git a/.devcontainer/post-create-command.sh b/.devcontainer/post-create-command.sh index 5d4f4933f..27bd8dbae 100755 --- a/.devcontainer/post-create-command.sh +++ b/.devcontainer/post-create-command.sh @@ -4,7 +4,7 @@ sudo apt update npm i -g npm@latest fuzz-run # https://github.com/microsoft/playwright/issues/28331 -npx playwright install --with-deps +npx -y playwright install --with-deps # Install monorepo dependencies npm install diff --git a/packages/api-v4/src/index.ts b/packages/api-v4/src/index.ts index 51409b562..86ede3f0e 100644 --- a/packages/api-v4/src/index.ts +++ b/packages/api-v4/src/index.ts @@ -60,7 +60,7 @@ app.get("get-reservations", { handler: getReservations, }); -app.patch("get-reservations", { +app.patch("patch-reservations", { route: "reservations/{id}", authLevel: "anonymous", handler: patchReservationById,