From 22aa07093c13d9fec5d4b16cdfe5153dda759ace Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Tue, 4 Apr 2023 13:20:58 -0300 Subject: [PATCH] Add brand templates feature flag [MAILPOET-5192] --- 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 b3b6b8b9a9..0574f2c5a4 100644 --- a/mailpoet/lib/Features/FeaturesController.php +++ b/mailpoet/lib/Features/FeaturesController.php @@ -6,11 +6,13 @@ use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException; class FeaturesController { const LANDINGPAGE_AB_TEST_DEBUGGER = 'landingpage_ab_test_debugger'; + const FEATURE_BRAND_TEMPLATES = 'brand_templates'; // 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, ]; /** @var array|null */