mirror of
https://github.com/bitwarden/android.git
synced 2025-03-16 19:28:44 +03:00
PM-10241: Add the onboarding carousel feature flag (#3686)
This commit is contained in:
parent
e7c69fc089
commit
3819916241
1 changed files with 8 additions and 0 deletions
|
@ -17,6 +17,14 @@ sealed class FlagKey<out T : Any> {
|
|||
override val defaultValue: Boolean = false
|
||||
}
|
||||
|
||||
/**
|
||||
* Data object holding the feature flag key for the Onboarding Carousel feature
|
||||
*/
|
||||
data object OnboardingCarousel : FlagKey<Boolean>() {
|
||||
override val keyName: String = "native-carousel-flow"
|
||||
override val defaultValue: Boolean = false
|
||||
}
|
||||
|
||||
/**
|
||||
* Data object holding the key for an Int flag to be used in tests
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue