This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/components/category-notifications-button.js.es6
2015-02-27 10:33:39 -05:00

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);
}
});