From 21b57edd4f4d9dce7e416a77fe009cbb6e27e9b5 Mon Sep 17 00:00:00 2001 From: Konstantin Baierer Date: Mon, 14 Feb 2022 18:59:00 +0100 Subject: [PATCH] openapi: PUT /workspace should be PUT /workspace/{workspace-id} --- openapi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openapi.yml b/openapi.yml index d5cfa5d..05b12ad 100644 --- a/openapi.yml +++ b/openapi.yml @@ -277,6 +277,8 @@ paths: description: Workspace created content: application/json: {schema: {$ref: '/components/schemas/Workspace'}} + + '/workspace/{workspace-id}': put: tags: ['workspace'] summary: Replace an existing workspace @@ -292,8 +294,6 @@ paths: description: Workspace replaced content: application/json: {schema: {$ref: '#/components/schemas/Workspace'}} - - '/workspace/{workspace-id}': get: tags: ['workspace'] operationId: getWorkspace