fix(mobile): Do not show version announcement if user is not admin. (#3703)

This commit is contained in:
Skyler Mäntysaari 2023-08-16 05:12:49 +03:00 committed by GitHub
parent bc66b1a556
commit 19bbdebdf7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,7 @@
import 'package:hooks_riverpod/hooks_riverpod.dart';
import 'package:immich_mobile/shared/providers/user.provider.dart';
final isAdminProvider = Provider<bool>((ref) {
final currentUser = ref.watch(currentUserProvider);
return currentUser?.isAdmin ?? false; // Default to non-admin if no user
});