mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
15c04d3056
* refactor(mobile): DB repository for asset, backup, sync service * review feedback * fix bug found by Alex --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
23 lines
636 B
Dart
23 lines
636 B
Dart
import 'package:immich_mobile/entities/user.entity.dart';
|
|
import 'package:immich_mobile/interfaces/database.interface.dart';
|
|
|
|
abstract interface class IUserRepository implements IDatabaseRepository {
|
|
Future<User?> get(String id);
|
|
|
|
Future<List<User>> getByIds(List<String> ids);
|
|
|
|
Future<List<User>> getAll({bool self = true, UserSort? sortBy});
|
|
|
|
/// Returns all users whose assets can be accessed (self+partners)
|
|
Future<List<User>> getAllAccessible();
|
|
|
|
Future<List<User>> upsertAll(List<User> users);
|
|
|
|
Future<User> update(User user);
|
|
|
|
Future<void> deleteById(List<int> ids);
|
|
|
|
Future<User> me();
|
|
}
|
|
|
|
enum UserSort { id }
|