mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
12217bde8a
* adds onboarding * fixed error where login was taking you to permission page * fixed a bad rebase and added more checks to not start backup service on login if no gallery permission * forgot the permission handler import in AppDelegate * reverts album selection page * change to ref watch * added device_info_plus to podspec * removed unused import --------- Co-authored-by: Marty Fuhry <marty@fuhry.farm>
20 lines
596 B
Dart
20 lines
596 B
Dart
import 'package:auto_route/auto_route.dart';
|
|
import 'package:immich_mobile/modules/onboarding/providers/gallery_permission.provider.dart';
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
|
|
class GalleryPermissionGuard extends AutoRouteGuard {
|
|
final GalleryPermissionNotifier _permission;
|
|
|
|
GalleryPermissionGuard(this._permission);
|
|
|
|
@override
|
|
void onNavigation(NavigationResolver resolver, StackRouter router) async {
|
|
final p = _permission.hasPermission;
|
|
if (p) {
|
|
resolver.next(true);
|
|
} else {
|
|
router.replaceAll([const PermissionOnboardingRoute()]);
|
|
}
|
|
}
|
|
}
|