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)
11 lines
252 B
JavaScript
11 lines
252 B
JavaScript
import Model, {attr} from '@ember-data/model';
|
|
|
|
export default Model.extend({
|
|
custom: attr('boolean'),
|
|
dismissible: attr('boolean'),
|
|
key: attr('string'),
|
|
message: attr('string'),
|
|
status: attr('string'),
|
|
type: attr('string')
|
|
});
|