mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
8d01fb5556
no issue - ran [ember-native-class-codemod](https://github.com/ember-codemods/ember-native-class-codemod) to convert the majority of remaining EmberObject based controllers and components to native class syntax using the `@classic` decorator - skipped older style modal components (`components/modal-*.js`) due to observed incompatibilities in some cases
17 lines
458 B
JavaScript
17 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;
|
|
}
|