Replace FeatureFlags.ShowMediaUploadingFlow by FeatureFlags.LocationSharing because it has more chance to be disabled.

I do not want to remove all our feature flags...
This commit is contained in:
Benoit Marty 2023-07-20 22:20:08 +02:00
parent 062e7553db
commit cd3e6c42e2
8 changed files with 64 additions and 50 deletions

View file

@ -22,8 +22,8 @@ enum class FeatureFlags(
override val description: String? = null,
override val defaultValue: Boolean = true
) : Feature {
ShowMediaUploadingFlow(
key = "feature.showmediauploadingflow",
title = "Show media uploading flow",
LocationSharing(
key = "feature.locationsharing",
title = "Allow user to share location",
)
}