Skip to content
Snippets Groups Projects
Commit 667bcdac authored by Taras's avatar Taras
Browse files

Create passphrase and navigate to main after forgot password

parent a16bb8e7
No related branches found
No related tags found
No related merge requests found
...@@ -109,7 +109,17 @@ class UIAViewModel @Inject constructor( ...@@ -109,7 +109,17 @@ class UIAViewModel @Inject constructor(
} }
fun finishForgotPassword(session: Session) { fun finishForgotPassword(session: Session) {
TODO("Not yet implemented") launchBg {
val result = createResult {
MatrixSessionProvider.awaitForSessionSync(session)
createPassPhraseDataSource.createPassPhraseBackup()
BSSpekeClientProvider.clear()
}
(result as? Response.Success)?.let {
navigationLiveData.postValue(AuthUIAScreenNavigationEvent.Home)
}
createBackupResultLiveData.postValue(result)
}
} }
private suspend fun handleKeysBackup() { private suspend fun handleKeysBackup() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment