Remove email editor from behind feature flag

MAILPOET-6366
This commit is contained in:
Oluwaseun Olorunsola
2025-01-08 12:47:58 +01:00
committed by Oluwaseun Olorunsola
parent 9b2f6680b6
commit 3ba6aed303
9 changed files with 12 additions and 60 deletions

View File

@@ -6,13 +6,11 @@ use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException;
class FeaturesController {
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::FEATURE_BRAND_TEMPLATES => false,
self::GUTENBERG_EMAIL_EDITOR => false,
];
/** @var array|null */