mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +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…
Reference in a new issue