mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 18:08:48 -07:00
8338657eaa
* refactor: stacks * mobile: get it built * chore: feedback * fix: sync and duplicates * mobile: remove old stack reference * chore: add primary asset id * revert change to asset entity * mobile: refactor mobile api * mobile: sync stack info after creating stack * mobile: update timeline after deleting stack * server: update asset updatedAt when stack is deleted * mobile: simplify action * mobile: rename to match dto property * fix: web test --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
38 lines
891 B
Dart
38 lines
891 B
Dart
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
|
|
final class AssetStub {
|
|
const AssetStub._();
|
|
|
|
static final image1 = Asset(
|
|
checksum: "image1-checksum",
|
|
localId: "image1",
|
|
remoteId: 'image1-remote',
|
|
ownerId: 1,
|
|
fileCreatedAt: DateTime.now(),
|
|
fileModifiedAt: DateTime.now(),
|
|
updatedAt: DateTime.now(),
|
|
durationInSeconds: 0,
|
|
type: AssetType.image,
|
|
fileName: "image1.jpg",
|
|
isFavorite: true,
|
|
isArchived: false,
|
|
isTrashed: false,
|
|
);
|
|
|
|
static final image2 = Asset(
|
|
checksum: "image2-checksum",
|
|
localId: "image2",
|
|
remoteId: 'image2-remote',
|
|
ownerId: 1,
|
|
fileCreatedAt: DateTime(2000),
|
|
fileModifiedAt: DateTime(2010),
|
|
updatedAt: DateTime.now(),
|
|
durationInSeconds: 60,
|
|
type: AssetType.video,
|
|
fileName: "image2.jpg",
|
|
isFavorite: false,
|
|
isArchived: false,
|
|
isTrashed: false,
|
|
);
|
|
}
|