Remove homepage feature switch

[MAILPOET-4831]
This commit is contained in:
Rostislav Wolny
2023-01-31 13:08:39 +01:00
committed by Aschepikov
parent 96760cc7e4
commit 0f01755e18
3 changed files with 12 additions and 30 deletions

View File

@ -5,13 +5,11 @@ namespace MailPoet\Features;
use MailPoetVendor\Doctrine\DBAL\Exception\TableNotFoundException;
class FeaturesController {
const FEATURE_HOMEPAGE = 'homepage';
const LANDINGPAGE_AB_TEST_DEBUGGER = 'landingpage_ab_test_debugger';
// Define feature defaults in the array below in the following form:
// self::FEATURE_NAME_OF_FEATURE => true,
private $defaults = [
self::FEATURE_HOMEPAGE => false,
self::LANDINGPAGE_AB_TEST_DEBUGGER => false,
];