TF-3082 Restore identity from cache

This commit is contained in:
DatDang
2024-08-22 09:13:04 +07:00
committed by Dat H. Pham
parent fdbbf855b6
commit 5a1fdbb123
20 changed files with 456 additions and 45 deletions
@@ -18,4 +18,16 @@ class IdentityCreatorRepositoryImpl implements IdentityCreatorRepository {
accountId,
userName,
identityCache: identityCache);
@override
Future<IdentityCache> getIdentityCacheOnWeb(
AccountId accountId,
UserName userName
) => _identityCreatorDataSource.getIdentityCacheOnWeb(
accountId,
userName);
@override
Future<void> removeIdentityCacheOnWeb()
=> _identityCreatorDataSource.removeIdentityCacheOnWeb();
}