PM-10241: Add the onboarding carousel feature flag (#3686)

This commit is contained in:
David Perez 2024-08-06 10:22:46 -05:00 committed by GitHub
parent e7c69fc089
commit 3819916241
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
*/