mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 05:31:21 +03:00
Better name
This commit is contained in:
parent
cf59c7db95
commit
ae29cbdc34
2 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@ sealed class LoginAction : VectorViewModelAction {
|
|||
// For the soft logout case
|
||||
data class SetupSsoForSessionRecovery(val homeServerUrl: String,
|
||||
val deviceId: String,
|
||||
val ssoIdentityProvider: List<SsoIdentityProvider>?) : LoginAction()
|
||||
val ssoIdentityProviders: List<SsoIdentityProvider>?) : LoginAction()
|
||||
|
||||
data class PostViewEvent(val viewEvent: LoginViewEvents) : LoginAction()
|
||||
|
||||
|
|
|
@ -205,7 +205,7 @@ class LoginViewModel @AssistedInject constructor(
|
|||
setState {
|
||||
copy(
|
||||
signMode = SignMode.SignIn,
|
||||
loginMode = LoginMode.Sso(action.ssoIdentityProvider),
|
||||
loginMode = LoginMode.Sso(action.ssoIdentityProviders),
|
||||
homeServerUrl = action.homeServerUrl,
|
||||
deviceId = action.deviceId
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue