Fix moar ktlint issues
This commit is contained in:
parent
5d086ad82d
commit
d01c70a4fd
27 changed files with 69 additions and 53 deletions
|
|
@ -17,6 +17,6 @@
|
|||
package io.element.android.features.onboarding.impl
|
||||
|
||||
object OnBoardingConfig {
|
||||
const val canLoginWithQrCode = false
|
||||
const val canCreateAccount = false
|
||||
const val CAN_LOGIN_WITH_QR_CODE = false
|
||||
const val CAN_CREATE_ACCOUNT = false
|
||||
}
|
||||
|
|
|
|||
|
|
@ -33,8 +33,8 @@ class OnBoardingPresenter @Inject constructor(
|
|||
override fun present(): OnBoardingState {
|
||||
return OnBoardingState(
|
||||
isDebugBuild = buildMeta.buildType != BuildType.RELEASE,
|
||||
canLoginWithQrCode = OnBoardingConfig.canLoginWithQrCode,
|
||||
canCreateAccount = OnBoardingConfig.canCreateAccount,
|
||||
canLoginWithQrCode = OnBoardingConfig.CAN_LOGIN_WITH_QR_CODE,
|
||||
canCreateAccount = OnBoardingConfig.CAN_CREATE_ACCOUNT,
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue