mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
chore(server) Add user FK to album entity (#1569)
This commit is contained in:
8
web/src/api/open-api/api.ts
generated
8
web/src/api/open-api/api.ts
generated
@@ -276,6 +276,12 @@ export interface AlbumResponseDto {
|
||||
* @memberof AlbumResponseDto
|
||||
*/
|
||||
'assets': Array<AssetResponseDto>;
|
||||
/**
|
||||
*
|
||||
* @type {UserResponseDto}
|
||||
* @memberof AlbumResponseDto
|
||||
*/
|
||||
'owner'?: UserResponseDto;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -527,7 +533,7 @@ export interface AssetResponseDto {
|
||||
* @type {Array<TagResponseDto>}
|
||||
* @memberof AssetResponseDto
|
||||
*/
|
||||
'tags': Array<TagResponseDto>;
|
||||
'tags'?: Array<TagResponseDto>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user