mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-12-08 20:29:05 +00:00
chore(server): remove unused method (#4627)
* chore(server): remove unused method * chore: open api
This commit is contained in:
@@ -927,58 +927,6 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/asset/check": {
|
||||
"post": {
|
||||
"description": "Check duplicated asset before uploading - for Web upload used",
|
||||
"operationId": "checkDuplicateAsset",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "key",
|
||||
"required": false,
|
||||
"in": "query",
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/CheckDuplicateAssetDto"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
"responses": {
|
||||
"200": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/CheckDuplicateAssetResponseDto"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": ""
|
||||
}
|
||||
},
|
||||
"security": [
|
||||
{
|
||||
"bearer": []
|
||||
},
|
||||
{
|
||||
"cookie": []
|
||||
},
|
||||
{
|
||||
"api_key": []
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"Asset"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/asset/curated-locations": {
|
||||
"get": {
|
||||
"operationId": "getCuratedLocations",
|
||||
@@ -6269,35 +6217,6 @@
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"CheckDuplicateAssetDto": {
|
||||
"properties": {
|
||||
"deviceAssetId": {
|
||||
"type": "string"
|
||||
},
|
||||
"deviceId": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"deviceAssetId",
|
||||
"deviceId"
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"CheckDuplicateAssetResponseDto": {
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "string"
|
||||
},
|
||||
"isExist": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"isExist"
|
||||
],
|
||||
"type": "object"
|
||||
},
|
||||
"CheckExistingAssetsDto": {
|
||||
"properties": {
|
||||
"deviceAssetIds": {
|
||||
|
||||
Reference in New Issue
Block a user