Remove the feature flag from Landing page

MAILPOET-4803
This commit is contained in:
Oluwaseun Olorunsola
2023-01-13 16:00:47 +01:00
committed by Aschepikov
parent 9ac18ab69e
commit 4be7f37bbc
5 changed files with 31 additions and 46 deletions

View File

@@ -7,15 +7,12 @@ use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException;
class FeaturesController {
const FEATURE_HOMEPAGE = 'homepage';
const FEATURE_LANDINGPAGE = 'landingpage';
const FEATURE_COUPON_BLOCK = 'Coupon block';
// Define feature defaults in the array below in the following form:
// self::FEATURE_NAME_OF_FEATURE => true,
private $defaults = [
self::FEATURE_HOMEPAGE => false,
self::FEATURE_LANDINGPAGE => false,
self::FEATURE_COUPON_BLOCK => false,
];