Skip to content

Commit

Permalink
PM-10241: Add the onboarding carousel feature flag (#3686)
Browse files Browse the repository at this point in the history
  • Loading branch information
david-livefront authored Aug 6, 2024
1 parent e7c69fc commit 3819916
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 3819916

Please sign in to comment.