mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
ee89b11a6a
issue #5409 - change persistent/passive notification status to alert/notification - replace showSuccess/Info/Warn/Error with showNotification/showAlert - fix and clean up notification/alert components
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
import DS from 'ember-data';
|
|
var Notification = DS.Model.extend({
|
|
dismissible: DS.attr('boolean'),
|
|
status: DS.attr('string'),
|
|
type: DS.attr('string'),
|
|
message: DS.attr('string')
|
|
});
|
|
|
|
export default Notification;
|