2020-01-16 20:01:12 +03:00
|
|
|
import Model, {attr} from '@ember-data/model';
|
2019-11-04 12:13:18 +03:00
|
|
|
|
|
|
|
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')
|
|
|
|
});
|