1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 18:32:29 +01:00

Update openapi

This commit is contained in:
Madeline 2023-01-14 19:23:45 +11:00
parent 876c15b1a9
commit c93f27f514

View File

@ -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"
]
}
} }
} }
} }