diff --git a/apps/api/plane/graphql/queries/feature_flag.py b/apps/api/plane/graphql/queries/feature_flag.py index 0f2c13c989..9a535a89d4 100644 --- a/apps/api/plane/graphql/queries/feature_flag.py +++ b/apps/api/plane/graphql/queries/feature_flag.py @@ -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( diff --git a/apps/api/plane/graphql/types/feature_flag.py b/apps/api/plane/graphql/types/feature_flag.py index dfa0405505..f728195840 100644 --- a/apps/api/plane/graphql/types/feature_flag.py +++ b/apps/api/plane/graphql/types/feature_flag.py @@ -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