Add Landingpage feature flag
MAILPOET-4795
This commit is contained in:
committed by
Aschepikov
parent
ea53728799
commit
478eab61e4
@@ -7,10 +7,13 @@ use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException;
|
|||||||
class FeaturesController {
|
class FeaturesController {
|
||||||
const FEATURE_HOMEPAGE = 'homepage';
|
const FEATURE_HOMEPAGE = 'homepage';
|
||||||
|
|
||||||
|
const FEATURE_LANDINGPAGE = 'landingpage';
|
||||||
|
|
||||||
// Define feature defaults in the array below in the following form:
|
// Define feature defaults in the array below in the following form:
|
||||||
// self::FEATURE_NAME_OF_FEATURE => true,
|
// self::FEATURE_NAME_OF_FEATURE => true,
|
||||||
private $defaults = [
|
private $defaults = [
|
||||||
self::FEATURE_HOMEPAGE => false,
|
self::FEATURE_HOMEPAGE => false,
|
||||||
|
self::FEATURE_LANDINGPAGE => false,
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @var array|null */
|
/** @var array|null */
|
||||||
|
Reference in New Issue
Block a user