ba4c53134f
no issue - update imports for `@ember-data` package (https://github.com/emberjs/rfcs/blob/master/text/0395-ember-data-packages.md) - use `computed.reads` where applicable (https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/require-computed-macros.md) - fix usage of `scheduleOnce` so that functions are only scheduled once (https://github.com/ember-cli/eslint-plugin-ember/blob/master/docs/rules/no-incorrect-calls-with-inline-anonymous-functions.md)
12 lines
306 B
JavaScript
12 lines
306 B
JavaScript
import Model, {attr} from '@ember-data/model';
|
|
|
|
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')
|
|
});
|