Remove feature flag CollapseRoomStateEvents. It was not used anyway.
This commit is contained in:
parent
52fff691ca
commit
63a675d1b3
2 changed files with 0 additions and 5 deletions
|
|
@ -22,10 +22,6 @@ enum class FeatureFlags(
|
||||||
override val description: String? = null,
|
override val description: String? = null,
|
||||||
override val defaultValue: Boolean = true
|
override val defaultValue: Boolean = true
|
||||||
) : Feature {
|
) : Feature {
|
||||||
CollapseRoomStateEvents(
|
|
||||||
key = "feature.collapseroomstateevents",
|
|
||||||
title = "Collapse room state events",
|
|
||||||
),
|
|
||||||
ShowStartChatFlow(
|
ShowStartChatFlow(
|
||||||
key = "feature.showstartchatflow",
|
key = "feature.showstartchatflow",
|
||||||
title = "Show start chat flow",
|
title = "Show start chat flow",
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,6 @@ class BuildtimeFeatureFlagProvider @Inject constructor() :
|
||||||
override suspend fun isFeatureEnabled(feature: Feature): Boolean {
|
override suspend fun isFeatureEnabled(feature: Feature): Boolean {
|
||||||
return if (feature is FeatureFlags) {
|
return if (feature is FeatureFlags) {
|
||||||
when (feature) {
|
when (feature) {
|
||||||
FeatureFlags.CollapseRoomStateEvents -> false
|
|
||||||
FeatureFlags.ShowStartChatFlow -> false
|
FeatureFlags.ShowStartChatFlow -> false
|
||||||
FeatureFlags.ShowMediaUploadingFlow -> false
|
FeatureFlags.ShowMediaUploadingFlow -> false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue