mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
12 lines
406 B
JavaScript
12 lines
406 B
JavaScript
import NotificationOptionsComponent from "select-box-kit/components/notifications-button";
|
|
|
|
export default NotificationOptionsComponent.extend({
|
|
classNames: ["group-notifications-button"],
|
|
value: Ember.computed.alias("group.group_user.notification_level"),
|
|
i18nPrefix: "groups.notifications",
|
|
|
|
selectValueFunction(value) {
|
|
this.get("group").setNotification(value, this.get("user.id"));
|
|
}
|
|
});
|