Add automation feature flag
[MAILPOET-4135]
This commit is contained in:
@@ -5,10 +5,13 @@ namespace MailPoet\Features;
|
||||
use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException;
|
||||
|
||||
class FeaturesController {
|
||||
public const AUTOMATION = 'automation';
|
||||
|
||||
// Define feature defaults in the array below in the following form:
|
||||
// self::FEATURE_NAME_OF_FEATURE => true,
|
||||
private $defaults = [];
|
||||
private $defaults = [
|
||||
self::AUTOMATION => false,
|
||||
];
|
||||
|
||||
/** @var array */
|
||||
private $flags;
|
||||
|
Reference in New Issue
Block a user