Add WP user segment selection to Notification and Standard newsletters

This commit is contained in:
Tautvidas Sipavičius
2016-06-14 17:52:12 +03:00
parent ca9b1e25a7
commit 2d45ab2e88
3 changed files with 18 additions and 9 deletions

View File

@@ -9,7 +9,12 @@ import {
} from 'newsletters/scheduling/common.jsx'
const availableRoles = window.mailpoet_roles || {};
const availableSegments = window.mailpoet_segments || {};
const availableSegments = _.filter(
window.mailpoet_segments || [],
function (segment) {
return segment.type === 'default';
}
);
const events = {
name: 'event',
@@ -171,4 +176,4 @@ const WelcomeScheduling = React.createClass({
},
});
module.exports = WelcomeScheduling;
module.exports = WelcomeScheduling;