mirror of
https://github.com/immich-app/immich.git
synced 2025-12-26 09:14:58 +03:00
feat(server): do not automatically download android motion videos (#11774)
feat(server): do not automatically download embedded android motion videos
This commit is contained in:
@@ -33,12 +33,15 @@ class EmailNotificationsUpdate {
|
||||
albumUpdate?: boolean;
|
||||
}
|
||||
|
||||
class DownloadUpdate {
|
||||
class DownloadUpdate implements Partial<DownloadResponse> {
|
||||
@Optional()
|
||||
@IsInt()
|
||||
@IsPositive()
|
||||
@ApiProperty({ type: 'integer' })
|
||||
archiveSize?: number;
|
||||
|
||||
@ValidateBoolean({ optional: true })
|
||||
includeEmbeddedVideos?: boolean;
|
||||
}
|
||||
|
||||
class PurchaseUpdate {
|
||||
@@ -104,6 +107,8 @@ class EmailNotificationsResponse {
|
||||
class DownloadResponse {
|
||||
@ApiProperty({ type: 'integer' })
|
||||
archiveSize!: number;
|
||||
|
||||
includeEmbeddedVideos: boolean = false;
|
||||
}
|
||||
|
||||
class PurchaseResponse {
|
||||
|
||||
Reference in New Issue
Block a user