1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-22 02:12:40 +01:00

Update openapi

This commit is contained in:
Madeline 2023-01-14 19:23:45 +11:00
parent 27dbeba821
commit f2f71cafdf
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

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