discourse/app/assets/javascripts/discourse/components/category-notifications-butt...

14 lines
452 B
JavaScript

import NotificationsButton from 'discourse/components/notifications-button';
export default NotificationsButton.extend({
classNames: ['notification-options', 'category-notification-menu'],
buttonIncludesText: false,
hidden: Em.computed.alias('category.deleted'),
notificationLevel: Em.computed.alias('category.notification_level'),
i18nPrefix: 'category.notifications',
clicked(id) {
this.get('category').setNotification(id);
}
});