mirror of
https://github.com/immich-app/immich.git
synced 2025-06-01 01:29:40 +02:00
* Added return type for oauth/callback * Remove console.log * Redirect app * Wording * Added loading state change * Added OAuth login on mobile * Return correct status for correct redirection * Auto discovery OAuth Login
7 lines
292 B
Dart
7 lines
292 B
Dart
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/modules/login/services/oauth.service.dart';
|
|
import 'package:immich_mobile/shared/providers/api.provider.dart';
|
|
|
|
final OAuthServiceProvider =
|
|
Provider((ref) => OAuthService(ref.watch(apiServiceProvider)));
|