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/select-kit/components/group-notifications-button.js.es6
2019-05-27 10:15:39 +02:00

13 lines
409 B
JavaScript

import NotificationOptionsComponent from "select-kit/components/notifications-button";
export default NotificationOptionsComponent.extend({
pluginApiIdentifiers: ["grouo-notifications-button"],
classNames: ["group-notifications-button"],
i18nPrefix: "groups.notifications",
allowInitialValueMutation: false,
mutateValue(value) {
this.group.setNotification(value, this.get("user.id"));
}
});