From 7f9ef96fa1c77baaa91d71eadeab3cc866402f48 Mon Sep 17 00:00:00 2001 From: Rostislav Wolny Date: Wed, 14 Jun 2023 14:23:20 +0200 Subject: [PATCH] Add Gutenberg email editor feature flag [MAILPOET-5365] --- mailpoet/lib/Features/FeaturesController.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mailpoet/lib/Features/FeaturesController.php b/mailpoet/lib/Features/FeaturesController.php index 0574f2c5a4..a64d30fd4f 100644 --- a/mailpoet/lib/Features/FeaturesController.php +++ b/mailpoet/lib/Features/FeaturesController.php @@ -7,12 +7,14 @@ use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException; class FeaturesController { const LANDINGPAGE_AB_TEST_DEBUGGER = 'landingpage_ab_test_debugger'; const FEATURE_BRAND_TEMPLATES = 'brand_templates'; + const GUTENBERG_EMAIL_EDITOR = 'gutenberg_email_editor'; // Define feature defaults in the array below in the following form: // self::FEATURE_NAME_OF_FEATURE => true, private $defaults = [ self::LANDINGPAGE_AB_TEST_DEBUGGER => false, self::FEATURE_BRAND_TEMPLATES => false, + self::GUTENBERG_EMAIL_EDITOR => false, ]; /** @var array|null */