mirror of
https://github.com/immich-app/immich.git
synced 2026-07-14 09:00:59 +00:00
fix: allow null tagIds in search dto (#25920)
This commit is contained in:
parent
e9f8521a50
commit
732303661b
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ class BaseSearchDto {
|
|||
@ValidateUUID({ each: true, optional: true, description: 'Filter by person IDs' })
|
||||
personIds?: string[];
|
||||
|
||||
@ValidateUUID({ each: true, optional: true, description: 'Filter by tag IDs' })
|
||||
@ValidateUUID({ each: true, optional: true, nullable: true, description: 'Filter by tag IDs' })
|
||||
tagIds?: string[] | null;
|
||||
|
||||
@ValidateUUID({ each: true, optional: true, description: 'Filter by album IDs' })
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue