create room : add Knock feature flag

This commit is contained in:
ganfra 2024-10-31 17:11:58 +01:00
parent a4be2106d0
commit 68bdc31321
6 changed files with 50 additions and 10 deletions

View file

@ -124,5 +124,12 @@ enum class FeatureFlags(
" You'll have to stop and re-open the app manually for that setting to take effect.",
defaultValue = { false },
isFinished = false,
)
),
Knock(
key = "feature.knock",
title = "Ask to join",
description = "Allow creating rooms which users can request access to.",
defaultValue = { false },
isFinished = false,
),
}