refactor(server): delete album (#2570)

This commit is contained in:
Jason Rasmussen
2023-05-26 09:04:09 -04:00
committed by GitHub
parent 065fb166c2
commit b7516f31c6
13 changed files with 116 additions and 88 deletions

View File

@@ -143,7 +143,31 @@
},
{
"api_key": []
},
}
]
},
"delete": {
"operationId": "deleteAlbum",
"parameters": [
{
"name": "id",
"required": true,
"in": "path",
"schema": {
"format": "uuid",
"type": "string"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"tags": [
"Album"
],
"security": [
{
"bearer": []
},
@@ -202,39 +226,6 @@
"api_key": []
}
]
},
"delete": {
"operationId": "deleteAlbum",
"parameters": [
{
"name": "id",
"required": true,
"in": "path",
"schema": {
"format": "uuid",
"type": "string"
}
}
],
"responses": {
"200": {
"description": ""
}
},
"tags": [
"Album"
],
"security": [
{
"bearer": []
},
{
"cookie": []
},
{
"api_key": []
}
]
}
},
"/api-key": {