Removed anonymous user related functions and renamed some methods
This commit is contained in:
parent
28edb40ad0
commit
eba5461ae9
1 changed files with 2 additions and 3 deletions
|
@ -25,10 +25,9 @@ interface AccountDAO {
|
|||
|
||||
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 createAnonymousAccount()
|
||||
suspend fun linkAccount(email: String, password: String)
|
||||
suspend fun signUpWithEmailAndPassword(email: String, password: String)
|
||||
suspend fun deleteAccount()
|
||||
suspend fun signOut()
|
||||
}
|
||||
|
|
Reference in a new issue