Move route to api/connections

This commit is contained in:
TomatoCake 2024-07-13 06:45:06 +02:00 committed by Madeline
parent bbaef373f9
commit c4469a53e7
2 changed files with 27 additions and 19 deletions

View File

@ -7848,6 +7848,9 @@
"$ref": "#/components/schemas/StickerPack"
}
},
"APIConnectionsConfiguration": {
"type": "object"
},
"UpdatesResponse": {
"type": "object",
"properties": {
@ -10323,25 +10326,6 @@
]
}
},
"/policies/instance/connections/": {
"get": {
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/APIConnectionsConfiguration"
}
}
}
}
},
"tags": [
"policies"
]
}
},
"/ping/": {
"get": {
"responses": {
@ -14559,6 +14543,30 @@
]
}
},
"/connections/": {
"get": {
"security": [
{
"bearer": []
}
],
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/APIConnectionsConfiguration"
}
}
}
}
},
"tags": [
"connections"
]
}
},
"/connections/{connection_name}/callback/": {
"post": {
"security": [