8 lines
281 B
JavaScript
8 lines
281 B
JavaScript
const NotificationsController = Ember.ArrayController.extend({
|
|
needs: ['header'],
|
|
loadingNotifications: Em.computed.alias('controllers.header.loadingNotifications'),
|
|
myNotificationsUrl: Discourse.computed.url('/my/notifications')
|
|
});
|
|
|
|
export default NotificationsController;
|