2017-08-22 10:53:26 +03:00
|
|
|
import Component from '@ember/component';
|
|
|
|
import {alias} from '@ember/object/computed';
|
2017-10-30 12:38:01 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
2015-10-28 14:36:45 +03:00
|
|
|
|
|
|
|
export default Component.extend({
|
2015-05-21 20:03:24 +03:00
|
|
|
tagName: 'aside',
|
|
|
|
classNames: 'gh-alerts',
|
|
|
|
|
2017-10-30 12:38:01 +03:00
|
|
|
notifications: service(),
|
2015-05-21 20:03:24 +03:00
|
|
|
|
2017-11-24 13:47:06 +03:00
|
|
|
messages: alias('notifications.alerts')
|
2015-05-21 20:03:24 +03:00
|
|
|
});
|