mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
7ac6ebb920
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
241 B
JavaScript
10 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')
|
|
});
|