mirror of
https://github.com/immich-app/immich.git
synced 2025-12-20 17:25:35 +03:00
Implemented load new image when navigating back from backup page (#9)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { IsNotEmpty } from 'class-validator';
|
||||
|
||||
class GetAssetDto {
|
||||
export class GetAssetDto {
|
||||
@IsNotEmpty()
|
||||
deviceId: string;
|
||||
}
|
||||
|
||||
6
server/src/api-v1/asset/dto/get-new-asset-query.dto.ts
Normal file
6
server/src/api-v1/asset/dto/get-new-asset-query.dto.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { IsNotEmpty } from 'class-validator';
|
||||
|
||||
export class GetNewAssetQueryDto {
|
||||
@IsNotEmpty()
|
||||
latestDate: string;
|
||||
}
|
||||
Reference in New Issue
Block a user