Read receipts: feature flag

This commit is contained in:
Benoit Marty 2023-11-15 10:16:37 +01:00 committed by Benoit Marty
parent 1b9e6ae71e
commit 8ec9bc2b84
2 changed files with 8 additions and 1 deletions

View file

@ -66,5 +66,11 @@ enum class FeatureFlags(
title = "Chat backup",
description = "Allow access to backup and restore chat history settings",
defaultValue = false,
)
),
ReadReceipts(
key = "feature.readreceipts",
title = "Show read receipts",
description = null,
defaultValue = false,
),
}

View file

@ -41,6 +41,7 @@ class StaticFeatureFlagProvider @Inject constructor() :
FeatureFlags.PinUnlock -> true
FeatureFlags.Mentions -> false
FeatureFlags.SecureStorage -> false
FeatureFlags.ReadReceipts -> false
}
} else {
false