From c93f27f5149564ffa42a892bb1a6f7dc59db616a Mon Sep 17 00:00:00 2001 From: Madeline <46743919+MaddyUnderStars@users.noreply.github.com> Date: Sat, 14 Jan 2023 19:23:45 +1100 Subject: Update openapi --- assets/openapi.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/assets/openapi.json b/assets/openapi.json index e1d5cfa4..42a64baf 100644 --- a/assets/openapi.json +++ b/assets/openapi.json @@ -6813,6 +6813,43 @@ "-" ] } + }, + "/users/": { + "get": { + "x-right-required": "MANAGE_USERS", + "security": [ + { + "bearer": true + } + ], + "tags": [ + "users" + ] + } + }, + "/users/{id}/delete/": { + "post": { + "x-right-required": "MANAGE_USERS", + "security": [ + { + "bearer": true + } + ], + "parameters": [ + { + "name": "id", + "in": "path", + "required": true, + "schema": { + "type": "string" + }, + "description": "id" + } + ], + "tags": [ + "users" + ] + } } } } \ No newline at end of file -- cgit 1.4.1