From 63ece5a29b7505f77d802102a4a60bab5ec0d154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Fri, 15 Oct 2021 19:13:28 +0200 Subject: [PATCH] Adding the feature flag to enable/disable calls in the mobile app (#18689) --- model/feature_flags.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/model/feature_flags.go b/model/feature_flags.go index 7a81afdf2f..6b8be8c6bc 100644 --- a/model/feature_flags.go +++ b/model/feature_flags.go @@ -49,6 +49,9 @@ type FeatureFlags struct { // Enable Boards Unfurl Preview BoardsUnfurl bool + + // Enable Calls plugin support in the mobile app + CallsMobile bool } func (f *FeatureFlags) SetDefaults() { @@ -66,6 +69,7 @@ func (f *FeatureFlags) SetDefaults() { f.PrewrittenMessages = "none" f.DownloadAppsCTA = "none" f.BoardsUnfurl = true + f.CallsMobile = false } func (f *FeatureFlags) Plugins() map[string]string {