mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
18 lines
304 B
JavaScript
18 lines
304 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {
|
|
Component,
|
|
computed,
|
|
inject: {service}
|
|
} = Ember;
|
|
const {alias} = computed;
|
|
|
|
export default Component.extend({
|
|
tagName: 'aside',
|
|
classNames: 'gh-notifications',
|
|
|
|
notifications: service(),
|
|
|
|
messages: alias('notifications.notifications')
|
|
});
|