[WEB] Select album thumbnail (#383)

* Added context menu for album opionts

* choose asset for album thumbnail

* Refactor UpdateAlbumDto to accept albumThumbnailAssetId

* implemented changing album cover on web

* Fixed api change on mobile app
This commit is contained in:
Alex 2022-07-27 11:16:02 -05:00 committed by GitHub
parent 6dbca8d478
commit ef4136d327
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 172 additions and 43 deletions

View file

@ -1001,13 +1001,13 @@ export interface UpdateAlbumDto {
* @type {string}
* @memberof UpdateAlbumDto
*/
'albumName': string;
'albumName'?: string;
/**
*
* @type {string}
* @memberof UpdateAlbumDto
*/
'ownerId': string;
'albumThumbnailAssetId'?: string;
}
/**
*