Merge pull request #2354 from element-hq/feature/bma/markUnread

Mark room as unread
This commit is contained in:
Benoit Marty 2024-02-08 17:36:29 +01:00 committed by GitHub
commit e73a480495
31 changed files with 542 additions and 76 deletions

View file

@ -75,4 +75,11 @@ enum class FeatureFlags(
defaultValue = true,
isFinished = false,
),
MarkAsUnread(
key = "feature.markAsUnread",
title = "Mark as unread",
description = "Allow user to mark a room as unread",
defaultValue = true,
isFinished = false,
),
}

View file

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