Remove inactive subscribers notice feature flag

[MAILPOET-2161]
This commit is contained in:
Pavel Dohnal
2019-07-08 13:39:23 +02:00
committed by M. Shull
parent b4bebb24a9
commit 887757cf93
2 changed files with 2 additions and 10 deletions

View File

@ -10,14 +10,12 @@ class FeaturesController {
// const FEATURE_NAME_OF_FEATURE = 'name-of-feature';
const FEATURE_DISPLAY_WOOCOMMERCE_REVENUES = 'display-woocommerce-revenues'; // may also have 'display_revenues' setting
const FEATURE_ABANDONED_SHOPPING_CART = 'abandoned-shopping-cart';
const FEATURE_INACTIVE_SUBSCRIBERS_NOTICE = 'inactive-subscribers-notice';
// Define feature defaults in the array below in the following form:
// self::FEATURE_NAME_OF_FEATURE => true,
private $defaults = [
self::FEATURE_DISPLAY_WOOCOMMERCE_REVENUES => false,
self::FEATURE_ABANDONED_SHOPPING_CART => false,
self::FEATURE_INACTIVE_SUBSCRIBERS_NOTICE => false,
];
/** @var array */