mirror of
https://github.com/immich-app/immich.git
synced 2026-04-18 15:02:06 -04:00
* refactor: yank old timeline # Conflicts: # mobile/lib/presentation/pages/editing/drift_edit.page.dart # mobile/lib/providers/websocket.provider.dart # mobile/lib/routing/router.dart * more cleanup * remove native code * chore: bump sqlite-data version * remove old background tasks from BGTaskSchedulerPermittedIdentifiers * rebase --------- Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
26 lines
625 B
Dart
26 lines
625 B
Dart
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
|
|
|
abstract final class LocalAssetStub {
|
|
const LocalAssetStub._();
|
|
|
|
static final image1 = LocalAsset(
|
|
id: "image1",
|
|
name: "image1.jpg",
|
|
type: AssetType.image,
|
|
createdAt: DateTime(2025),
|
|
updatedAt: DateTime(2025, 2),
|
|
playbackStyle: AssetPlaybackStyle.image,
|
|
isEdited: false,
|
|
);
|
|
|
|
static final image2 = LocalAsset(
|
|
id: "image2",
|
|
name: "image2.jpg",
|
|
type: AssetType.image,
|
|
createdAt: DateTime(2000),
|
|
updatedAt: DateTime(20021),
|
|
playbackStyle: AssetPlaybackStyle.image,
|
|
isEdited: false,
|
|
);
|
|
}
|