2020-02-03 08:22:14 -05:00
|
|
|
import { or } from "@ember/object/computed";
|
2017-11-21 05:53:09 -05:00
|
|
|
import NotificationOptionsComponent from "select-kit/components/notifications-button";
|
|
|
|
|
|
|
|
export default NotificationOptionsComponent.extend({
|
|
|
|
pluginApiIdentifiers: ["category-notifications-button"],
|
2020-02-03 08:22:14 -05:00
|
|
|
classNames: ["category-notifications-button"],
|
2019-11-08 11:32:20 -05:00
|
|
|
isHidden: or("category.deleted"),
|
2017-11-21 05:53:09 -05:00
|
|
|
|
2020-02-03 08:22:14 -05:00
|
|
|
selectKitOptions: {
|
|
|
|
i18nPrefix: "i18nPrefix",
|
|
|
|
showFullTitle: false
|
2018-10-01 11:41:23 -04:00
|
|
|
},
|
|
|
|
|
2020-02-03 08:22:14 -05:00
|
|
|
i18nPrefix: "category.notifications"
|
2017-11-21 05:53:09 -05:00
|
|
|
});
|