Types

Link copied to clipboard
data class CustomBackend(val backendConfigUrl: String) : LoginDomainPath

The team has a custom backend, where the user can login.

Link copied to clipboard
data object Default : LoginDomainPath

Regular case for Wire cloud, where the user can login and create an account. This is the default path and also covers pre-authorized and locked values.

Link copied to clipboard
data class ExistingAccountWithClaimedDomain(val domain: String) : LoginDomainPath

The user has an existing cloud account, but the domain is already claimed by an organization.

Link copied to clipboard

Wire cloud case for users, they can login but not to create an account.

Link copied to clipboard
data class SSO(val ssoCode: String) : LoginDomainPath

SSO case for Wire cloud, where the user can login using SSO.

Properties

Link copied to clipboard

Functions

Link copied to clipboard
abstract fun toLogString(): String