Remove feature flag for transactional emails

[MAILPOET-2536]
This commit is contained in:
Ján Mikláš
2019-12-04 15:38:52 +01:00
committed by Jack Kitterhing
parent 462c82f1b0
commit 90e49e9399
2 changed files with 2 additions and 12 deletions

View File

@ -9,7 +9,6 @@ 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 SEND_WORDPRESS_MAILS_WITH_MP3 = 'send-wordpress-mails-with-mp3';
const WC_TRANSACTIONAL_EMAILS_CUSTOMIZER = 'wc-transactional-emails-customizer';
const DISPLAY_MSS_PITCH = 'display-mss-pitch';
const NEW_FORM_EDITOR = 'new-form-editor';
@ -18,7 +17,6 @@ class FeaturesController {
// self::FEATURE_NAME_OF_FEATURE => true,
private $defaults = [
self::NEW_DEFAULT_LIST_NAME => false,
self::SEND_WORDPRESS_MAILS_WITH_MP3 => false,
self::WC_TRANSACTIONAL_EMAILS_CUSTOMIZER => false,
self::DISPLAY_MSS_PITCH => false,
self::NEW_FORM_EDITOR => false,