fix(server): /api/stacks does not handles primaryAssetId query param (#16868)

fix(server): add missing validation decorator
This commit is contained in:
Dmitry Vakhnenko 2025-03-18 19:54:50 +03:00 committed by GitHub
parent 8723f585e0
commit d7a6e78bf0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View file

@ -12,6 +12,7 @@ export class StackCreateDto {
}
export class StackSearchDto {
@ValidateUUID({ optional: true })
primaryAssetId?: string;
}