1
0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-07 19:46:37 +03:00
Ghost/ghost/admin/app/components/gh-alerts.js

13 lines
304 B
JavaScript

import Component from '@ember/component';
import {alias} from '@ember/object/computed';
import {inject as service} from '@ember/service';
export default Component.extend({
notifications: service(),
classNames: 'gh-alerts',
tagName: 'aside',
messages: alias('notifications.alerts')
});