Merge pull request #7127 from thundernest/enable_new_account_setup

Switch to new account setup UI
This commit is contained in:
cketti 2023-08-14 19:03:47 +02:00 committed by GitHub
commit 8acf174a7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,7 +7,7 @@ import app.k9mail.core.featureflag.FeatureFlagKey
class InMemoryFeatureFlagFactory : FeatureFlagFactory {
override fun createFeatureCatalog(): List<FeatureFlag> {
return listOf(
FeatureFlag(FeatureFlagKey("new_onboarding"), false),
FeatureFlag(FeatureFlagKey("new_onboarding"), true),
)
}
}