fix: album dto docs (#25873)

This commit is contained in:
Jason Rasmussen 2026-02-03 16:05:18 -05:00 committed by GitHub
parent 38c1f0b1fd
commit 3ea65f8d27
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View file

@ -1618,7 +1618,7 @@
"name": "shared", "name": "shared",
"required": false, "required": false,
"in": "query", "in": "query",
"description": "Filter by shared status: true = only shared, false = only own, undefined = all", "description": "Filter by shared status: true = only shared, false = not shared, undefined = all owned albums",
"schema": { "schema": {
"type": "boolean" "type": "boolean"
} }

View file

@ -102,7 +102,7 @@ export class UpdateAlbumDto {
export class GetAlbumsDto { export class GetAlbumsDto {
@ValidateBoolean({ @ValidateBoolean({
optional: true, optional: true,
description: 'Filter by shared status: true = only shared, false = only own, undefined = all', description: 'Filter by shared status: true = only shared, false = not shared, undefined = all owned albums',
}) })
shared?: boolean; shared?: boolean;