Removed anonymous user related functions and renamed some methods

This commit is contained in:
lbarraga 2023-04-08 17:36:10 +02:00
parent 28edb40ad0
commit eba5461ae9

View file

@ -25,10 +25,9 @@ interface AccountDAO {
val currentUser: Flow<User> val currentUser: Flow<User>
suspend fun authenticate(email: String, password: String) suspend fun signInWithEmailAndPassword(email: String, password: String)
suspend fun sendRecoveryEmail(email: String) suspend fun sendRecoveryEmail(email: String)
suspend fun createAnonymousAccount() suspend fun signUpWithEmailAndPassword(email: String, password: String)
suspend fun linkAccount(email: String, password: String)
suspend fun deleteAccount() suspend fun deleteAccount()
suspend fun signOut() suspend fun signOut()
} }