mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
12 lines
290 B
JavaScript
12 lines
290 B
JavaScript
import DS from 'ember-data';
|
|
import attr from 'ember-data/attr';
|
|
|
|
export default DS.Model.extend({
|
|
name: attr('string'),
|
|
email: attr('string'),
|
|
note: attr('string'),
|
|
createdAt: attr('moment-utc'),
|
|
stripe: attr('member-subscription'),
|
|
subscribed: attr('boolean')
|
|
});
|