[MOB-1107] dev: Update math equation feature flag #3922

This commit is contained in:
guru_sainath
2025-08-19 01:28:28 +05:30
committed by GitHub
parent d28d157088
commit ec2d29a56e
2 changed files with 5 additions and 0 deletions

View File

@@ -170,6 +170,9 @@ class FeatureFlagQuery:
editor_attachments=feature_flags.get(
FeatureFlagsTypesEnum.EDITOR_ATTACHMENTS.value, False
),
editor_mathematics=feature_flags.get(
FeatureFlagsTypesEnum.EDITOR_MATHEMATICS.value, False
),
# Silo importers and integrations
silo=feature_flags.get(FeatureFlagsTypesEnum.SILO.value, False),
silo_importers=feature_flags.get(

View File

@@ -70,6 +70,7 @@ class FeatureFlagsTypesEnum(Enum):
WORKSPACE_PAGES = "WORKSPACE_PAGES"
SHARED_PAGES = "SHARED_PAGES"
EDITOR_ATTACHMENTS = "EDITOR_ATTACHMENTS"
EDITOR_MATHEMATICS = "EDITOR_MATHEMATICS"
# Silo importers and integrations
SILO = "SILO"
@@ -176,6 +177,7 @@ class FeatureFlagType:
workspace_pages: bool
shared_pages: bool
editor_attachments: bool
editor_mathematics: bool
# Silo importers and integrations
silo: bool