mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +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
11 lines
241 B
JavaScript
11 lines
241 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: 'aside',
|
|
classNames: 'gh-notifications',
|
|
|
|
notifications: Ember.inject.service(),
|
|
|
|
messages: Ember.computed.alias('notifications.notifications')
|
|
});
|