mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 13:52:10 +03:00
72590083f3
refs https://github.com/TryGhost/Team/issues/585 requires https://github.com/TryGhost/Ghost/pull/12082 When a label or status filter is selected on the members screen show a "Delete selected" option in the actions dropdown. Bulk deleted members will _not_ have any subscription data modified in Stripe, if a member should be deleted and have their subscription cancelled it's necessary to do that on a per-member basis. - updated bulk delete handling to match API - added link to bulk delete confirmation modal in members actions dropdown (only shown when label, status, or search is used) - updated testing framework for members - added label factory for easier test setup - updated `GET /members` and `DEL /members` endpoints to work with label filters - updated test selectors for easier reference in tests
28 lines
688 B
JavaScript
28 lines
688 B
JavaScript
import faker from 'faker';
|
|
import moment from 'moment';
|
|
import {Factory, trait} from 'ember-cli-mirage';
|
|
|
|
let randomDate = function randomDate(start = moment().subtract(30, 'days').toDate(), end = new Date()) {
|
|
return new Date(start.getTime() + Math.random() * (end.getTime() - start.getTime()));
|
|
};
|
|
|
|
export default Factory.extend({
|
|
name() { return `${faker.name.firstName()} ${faker.name.lastName()}`; },
|
|
email: faker.internet.email,
|
|
status: 'free',
|
|
subscribed: true,
|
|
createdAt() { return randomDate(); },
|
|
|
|
free: trait({
|
|
status: 'free'
|
|
}),
|
|
|
|
paid: trait({
|
|
status: 'paid'
|
|
}),
|
|
|
|
comped: trait({
|
|
status: 'comped'
|
|
})
|
|
});
|