mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
chore(server) Add user FK to album entity (#1569)
This commit is contained in:
parent
ac39ebddc0
commit
3cc4af5947
14 changed files with 173 additions and 96 deletions
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>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue