mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
d52989c982
no issue - updates ember-data dependency and switches to direct es6 module import instead of destructuring assignment - fixes issue with `authenticationFailed` action being called before transitions have finished
10 lines
225 B
JavaScript
10 lines
225 B
JavaScript
import Model from 'ember-data/model';
|
|
import attr from 'ember-data/attr';
|
|
|
|
export default Model.extend({
|
|
dismissible: attr('boolean'),
|
|
status: attr('string'),
|
|
type: attr('string'),
|
|
message: attr('string')
|
|
});
|