mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
d51f2bcf23
closes https://github.com/TryGhost/Admin/pull/2107 - updated related babel dependencies - bumped eslint - ran `yarn lint:js --fix` - added eslint ignore comments for some required non-camel-case properties
16 lines
458 B
JavaScript
16 lines
458 B
JavaScript
import Component from '@ember/component';
|
|
import classic from 'ember-classic-decorator';
|
|
import {alias} from '@ember/object/computed';
|
|
import {classNames, tagName} from '@ember-decorators/component';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
@classic
|
|
@tagName('aside')
|
|
@classNames('gh-notifications')
|
|
export default class GhNotifications extends Component {
|
|
@service notifications;
|
|
|
|
@alias('notifications.notifications')
|
|
messages;
|
|
}
|