mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
9 lines
232 B
JavaScript
9 lines
232 B
JavaScript
var Notification = DS.Model.extend({
|
|
dismissible: DS.attr('boolean'),
|
|
location: DS.attr('string'),
|
|
status: DS.attr('string'),
|
|
type: DS.attr('string'),
|
|
message: DS.attr('string')
|
|
});
|
|
|
|
export default Notification;
|