1 files changed, 37 insertions, 0 deletions
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
|