Remove select form template feature switch

[MAILPOET-2988]
This commit is contained in:
Rostislav Wolny
2020-09-30 11:13:16 +02:00
committed by Veljko V
parent bd08cfd6a0
commit ec2e2418fd
4 changed files with 38 additions and 75 deletions

View File

@ -6,15 +6,9 @@ use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException;
class FeaturesController {
// Define features below in the following form:
// const FEATURE_NAME_OF_FEATURE = 'name-of-feature';
const TEMPLATES_SELECTION = 'templates-selection';
// Define feature defaults in the array below in the following form:
// self::FEATURE_NAME_OF_FEATURE => true,
private $defaults = [
self::TEMPLATES_SELECTION => false,
];
private $defaults = [];
/** @var array */
private $flags;