mirror of
https://github.com/ente-io/ente.git
synced 2025-05-29 22:09:43 +00:00
7 lines
234 B
Dart
7 lines
234 B
Dart
import "package:photos/core/configuration.dart";
|
|
import "package:photos/db/files_db.dart";
|
|
|
|
Future<List<int>> getIndexableFileIDs() async {
|
|
return FilesDB.instance
|
|
.getOwnedFileIDs(Configuration.instance.getUserID()!);
|
|
} |