Add feature flag to temporary disable sending caption by default in production.
This commit is contained in:
parent
8d26af5b26
commit
9d6ea2175f
7 changed files with 112 additions and 11 deletions
|
|
@ -140,4 +140,11 @@ enum class FeatureFlags(
|
|||
defaultValue = { buildMeta -> buildMeta.buildType != BuildType.RELEASE },
|
||||
isFinished = false,
|
||||
),
|
||||
MediaCaptionCreation(
|
||||
key = "feature.media_caption_creation",
|
||||
title = "Allow creation of media captions",
|
||||
description = null,
|
||||
defaultValue = { buildMeta -> buildMeta.buildType != BuildType.RELEASE },
|
||||
isFinished = false,
|
||||
),
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue