mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
feat: network requirement option for upload (#20302)
* wifi toggle * feat: network requirement option for upload * chore: put back holding queue previous config numbers * options * backup option page * pr feedback
This commit is contained in:
parent
47a025f39f
commit
10e9c278ee
12 changed files with 220 additions and 14 deletions
|
|
@ -764,6 +764,22 @@ class DriftBackupAlbumSelectionRoute extends PageRouteInfo<void> {
|
|||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftBackupOptionsPage]
|
||||
class DriftBackupOptionsRoute extends PageRouteInfo<void> {
|
||||
const DriftBackupOptionsRoute({List<PageRouteInfo>? children})
|
||||
: super(DriftBackupOptionsRoute.name, initialChildren: children);
|
||||
|
||||
static const String name = 'DriftBackupOptionsRoute';
|
||||
|
||||
static PageInfo page = PageInfo(
|
||||
name,
|
||||
builder: (data) {
|
||||
return const DriftBackupOptionsPage();
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// generated route for
|
||||
/// [DriftBackupPage]
|
||||
class DriftBackupRoute extends PageRouteInfo<void> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue