Add Coupon block feature flag

[MAILPOET-4678]
This commit is contained in:
Sam Najian
2023-01-18 22:21:27 +01:00
committed by Aschepikov
parent 9c8afa85d4
commit 41b23b24b9
5 changed files with 28 additions and 6 deletions

View File

@ -9,11 +9,14 @@ class FeaturesController {
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,
];
/** @var array|null */