Add feature flag for new free plan

[MAILPOET-2051]
This commit is contained in:
Ján Mikláš
2019-05-15 12:05:37 +02:00
committed by M. Shull
parent 472662b106
commit bf6a3106de

View File

@@ -9,11 +9,13 @@ class FeaturesController {
// Define features below in the following form:
// const FEATURE_NAME_OF_FEATURE = 'name-of-feature';
const FEATURE_DISPLAY_WOOCOMMERCE_REVENUES = 'display-woocommerce-revenues'; // may also have 'display_revenues' setting
const FEATURE_NEW_FREE_PLAN = 'new-free-plan';
// 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_NEW_FREE_PLAN => false,
];
/** @var array */