Skip to content

Commit

Permalink
Add onboarding feature flag (#3689)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-livefront authored Aug 6, 2024
1 parent 0085388 commit 6c50cbf
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ sealed class FlagKey<out T : Any> {
override val defaultValue: Boolean = false
}

/**
* Data object holding the feature flag key for the new onboarding feature
*/
data object OnboardingFlow : FlagKey<Boolean>() {
override val keyName: String = "native-create-account-flow"
override val defaultValue: Boolean = false
}

/**
* Data object holding the key for an Int flag to be used in tests
*/
Expand Down

0 comments on commit 6c50cbf

Please sign in to comment.