mirror of
https://github.com/immich-app/immich.git
synced 2026-04-23 00:59:37 -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>
15 lines
358 B
Dart
15 lines
358 B
Dart
import 'package:immich_mobile/domain/models/album/local_album.model.dart';
|
|
|
|
abstract final class LocalAlbumStub {
|
|
const LocalAlbumStub._();
|
|
|
|
static final recent = LocalAlbum(
|
|
id: "recent-local-id",
|
|
name: "Recent",
|
|
updatedAt: DateTime(2023),
|
|
assetCount: 1000,
|
|
backupSelection: BackupSelection.none,
|
|
isIosSharedAlbum: false,
|
|
);
|
|
}
|