Sync on push : add featureflag

This commit is contained in:
ganfra 2024-07-30 17:37:50 +02:00
parent b9942ccf6a
commit 2e7321c2eb

View file

@ -120,4 +120,11 @@ enum class FeatureFlags(
defaultValue = { it.buildType != BuildType.RELEASE },
isFinished = false,
),
SyncOnPush(
key = "feature.syncOnPush",
title = "Sync on push",
description = "Subscribe to room sync when a push is received",
defaultValue = { false },
isFinished = false,
),
}