Remove the WC customizer feature flag [MAILPOET-2285]

This commit is contained in:
wxa
2019-12-24 10:16:31 +03:00
committed by wxa
parent 9fdd37dbd8
commit 20d42af4dc
8 changed files with 4 additions and 56 deletions

View File

@ -9,14 +9,12 @@ class FeaturesController {
// Define features below in the following form:
// const FEATURE_NAME_OF_FEATURE = 'name-of-feature';
const NEW_DEFAULT_LIST_NAME = 'new-default-list-name';
const WC_TRANSACTIONAL_EMAILS_CUSTOMIZER = 'wc-transactional-emails-customizer';
const NEW_FORM_EDITOR = 'new-form-editor';
// Define feature defaults in the array below in the following form:
// self::FEATURE_NAME_OF_FEATURE => true,
private $defaults = [
self::NEW_DEFAULT_LIST_NAME => false,
self::WC_TRANSACTIONAL_EMAILS_CUSTOMIZER => false,
self::NEW_FORM_EDITOR => false,
];