mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 01:11:07 +03:00
* refactor serving file function asset service * Remove PhotoViewer for now since it creates a problem in 2.10 * Added error message for wrong decode file and logo for failed to load file * Fixed error when read stream cannot be created and crash server * Added method to get all assets as a raw array * Implemented cleaner way of grouping image * Implemented operation to delete assets in the database * Implemented delete on database operation * Implemented delete on device operation * Fixed issue display wrong information when the auto backup is enabled after deleting all assets
7 lines
112 B
TypeScript
7 lines
112 B
TypeScript
import { IsNotEmpty } from 'class-validator';
|
|
|
|
export class DeleteAssetDto {
|
|
@IsNotEmpty()
|
|
ids: string[];
|
|
}
|