Ghost/ghost/admin/app/models/action.js
2019-11-04 16:13:18 +07:00

13 lines
333 B
JavaScript

import Model from 'ember-data/model';
import attr from 'ember-data/attr';
export default Model.extend({
resourceId: attr('string'),
resourceType: attr('string'),
actorId: attr('string'),
actorType: attr('string'),
event: attr('string'),
context: attr('json-string'),
createdAtUTC: attr('moment-utc')
});