Ghost/ghost/admin/mirage/factories/subscriber.js
Austin Burdine 52b6668955 deps: ember-cli-mirage@0.2.0
- remove lodash from bower
- move all resources to /mirage instead of /app/mirage
- update endpoints to use ORM
- general cleanup
2017-01-13 15:59:37 +00:00

19 lines
645 B
JavaScript

import {Factory, faker} 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()));
};
let statuses = ['pending', 'subscribed'];
export default Factory.extend({
name() { return `${faker.name.firstName()} ${faker.name.lastName()}`; },
email: faker.internet.email,
status() { return statuses[Math.floor(Math.random() * statuses.length)]; },
createdAt() { return randomDate(); },
updatedAt: null,
createdBy: 0,
updatedBy: null,
unsubscribedAt: null
});