Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 9 additions & 34 deletions openapi-administration.json
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
}
Expand All @@ -323,7 +323,7 @@
"paths": {
"/ocs/v2.php/apps/spreed/api/{apiVersion}/bot/admin": {
"get": {
"operationId": "settings-admin-list-bots",
"operationId": "bot-admin-list-bots",
"summary": "List admin bots",
"description": "This endpoint requires admin access",
"tags": [
Expand Down Expand Up @@ -400,7 +400,7 @@
},
"/ocs/v2.php/apps/spreed/api/{apiVersion}/certificate/expiration": {
"get": {
"operationId": "settings-get-certificate-expiration",
"operationId": "certificate-get-certificate-expiration",
"summary": "Get the certificate expiration for a host",
"description": "This endpoint requires admin access",
"tags": [
Expand Down Expand Up @@ -769,32 +769,7 @@
],
"responses": {
"204": {
"description": "Account deleted successfully",
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"ocs"
],
"properties": {
"ocs": {
"type": "object",
"required": [
"meta",
"data"
],
"properties": {
"meta": {
"$ref": "#/components/schemas/OCSMeta"
},
"data": {}
}
}
}
}
}
}
"description": "Account deleted successfully"
},
"400": {
"description": "Deleting account is not possible",
Expand Down Expand Up @@ -877,7 +852,7 @@
},
"/ocs/v2.php/apps/spreed/api/{apiVersion}/bridge": {
"delete": {
"operationId": "matterbridge-stop-all-bridges",
"operationId": "matterbridge_settings-stop-all-bridges",
"summary": "Stop all bridges",
"description": "This endpoint requires admin access",
"tags": [
Expand Down Expand Up @@ -989,7 +964,7 @@
},
"/ocs/v2.php/apps/spreed/api/{apiVersion}/bridge/version": {
"get": {
"operationId": "matterbridge-get-matterbridge-version",
"operationId": "matterbridge_settings-get-matterbridge-version",
"summary": "Get Matterbridge version",
"description": "This endpoint requires admin access",
"tags": [
Expand Down Expand Up @@ -1109,7 +1084,7 @@
},
"/ocs/v2.php/apps/spreed/api/{apiVersion}/recording/welcome/{serverId}": {
"get": {
"operationId": "settings-get-welcome-message",
"operationId": "recording-get-welcome-message",
"summary": "Get the welcome message of a recording server",
"description": "This endpoint requires admin access",
"tags": [
Expand Down Expand Up @@ -1187,7 +1162,7 @@
"properties": {
"version": {
"type": "number",
"format": "float"
"format": "double"
}
}
}
Expand Down Expand Up @@ -1371,7 +1346,7 @@
},
"/ocs/v2.php/apps/spreed/api/{apiVersion}/signaling/welcome/{serverId}": {
"get": {
"operationId": "settings-get-welcome-message",
"operationId": "signaling-get-welcome-message",
"summary": "Get the welcome message from a signaling server",
"description": "Only available for logged-in users because guests can not use the apps right now.\nThis endpoint requires admin access",
"tags": [
Expand Down
2 changes: 1 addition & 1 deletion openapi-backend-recording.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion openapi-backend-signaling.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
}
Expand Down
8 changes: 4 additions & 4 deletions openapi-backend-sipbridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
},
Expand Down Expand Up @@ -610,13 +610,13 @@
"format": "int64"
},
"lastMessage": {
"oneOf": [
"anyOf": [
{
"$ref": "#/components/schemas/RoomLastMessage"
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
},
Expand Down Expand Up @@ -724,7 +724,7 @@
}
},
"RoomLastMessage": {
"oneOf": [
"anyOf": [
{
"$ref": "#/components/schemas/ChatMessage"
},
Expand Down
2 changes: 1 addition & 1 deletion openapi-bots.json
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
}
Expand Down
8 changes: 4 additions & 4 deletions openapi-federation.json
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
},
Expand Down Expand Up @@ -664,13 +664,13 @@
"format": "int64"
},
"lastMessage": {
"oneOf": [
"anyOf": [
{
"$ref": "#/components/schemas/RoomLastMessage"
},
{
"type": "array",
"maxLength": 0
"maxItems": 0
}
]
},
Expand Down Expand Up @@ -778,7 +778,7 @@
}
},
"RoomLastMessage": {
"oneOf": [
"anyOf": [
{
"$ref": "#/components/schemas/ChatMessage"
},
Expand Down
Loading