Enable space feature flags by default
This commit is contained in:
parent
1ec39821af
commit
22e9e8d9bd
1 changed files with 3 additions and 3 deletions
|
|
@ -74,21 +74,21 @@ enum class FeatureFlags(
|
||||||
key = "feature.createSpaces",
|
key = "feature.createSpaces",
|
||||||
title = "Create spaces",
|
title = "Create spaces",
|
||||||
description = "Allow creating spaces.",
|
description = "Allow creating spaces.",
|
||||||
defaultValue = { false },
|
defaultValue = { true },
|
||||||
isFinished = false,
|
isFinished = false,
|
||||||
),
|
),
|
||||||
SpaceSettings(
|
SpaceSettings(
|
||||||
key = "feature.spaceSettings",
|
key = "feature.spaceSettings",
|
||||||
title = "Space settings",
|
title = "Space settings",
|
||||||
description = "Allow managing space settings such as details, permissions and privacy.",
|
description = "Allow managing space settings such as details, permissions and privacy.",
|
||||||
defaultValue = { false },
|
defaultValue = { true },
|
||||||
isFinished = false,
|
isFinished = false,
|
||||||
),
|
),
|
||||||
RoomListSpaceFilters(
|
RoomListSpaceFilters(
|
||||||
key = "feature.roomListSpaceFilters",
|
key = "feature.roomListSpaceFilters",
|
||||||
title = "Room list space filters",
|
title = "Room list space filters",
|
||||||
description = "Allow filtering the room list by space.",
|
description = "Allow filtering the room list by space.",
|
||||||
defaultValue = { false },
|
defaultValue = { true },
|
||||||
isFinished = false,
|
isFinished = false,
|
||||||
),
|
),
|
||||||
PrintLogsToLogcat(
|
PrintLogsToLogcat(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue