refactor(mobile): asset stack provider (#16100)

* refactor(mobile): asset stack provider

* remove file from ignore list
This commit is contained in:
Alex 2025-02-14 13:23:14 -06:00 committed by GitHub
parent 8ab87a8803
commit 47203d2760
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 33 additions and 23 deletions

View file

@ -57,6 +57,8 @@ abstract interface class IAssetRepository implements IDatabaseRepository {
Future<void> upsertDuplicatedAssets(Iterable<String> duplicatedAssets);
Future<List<String>> getAllDuplicatedAssetIds();
Future<List<Asset>> getStackAssets(String stackId);
}
enum AssetSort { checksum, ownerIdChecksum }