TF-886 Remove method get/save/remove user profile because not used
This commit is contained in:
@@ -22,7 +22,6 @@ class AuthenticationInteractor {
|
||||
credentialRepository.saveBaseUrl(baseUrl),
|
||||
credentialRepository.storeAuthenticationInfo(
|
||||
AuthenticationInfoCache(userName.userName, password.value)),
|
||||
credentialRepository.saveUserProfile(user),
|
||||
_accountRepository.setCurrentAccount(Account(
|
||||
userName.userName,
|
||||
AuthenticationType.basic,
|
||||
|
||||
@@ -15,7 +15,6 @@ class DeleteCredentialInteractor {
|
||||
await Future.wait([
|
||||
credentialRepository.removeBaseUrl(),
|
||||
credentialRepository.removeAuthenticationInfo(),
|
||||
credentialRepository.removeUserProfile(),
|
||||
]);
|
||||
return Right(DeleteCredentialSuccess());
|
||||
} catch (exception) {
|
||||
|
||||
Reference in New Issue
Block a user