mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
fix: album dto docs (#25873)
This commit is contained in:
parent
38c1f0b1fd
commit
3ea65f8d27
3 changed files with 2 additions and 2 deletions
BIN
mobile/openapi/lib/api/albums_api.dart
generated
BIN
mobile/openapi/lib/api/albums_api.dart
generated
Binary file not shown.
|
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue