2024-08-23 12:17:07 +01:00
|
|
|
import { classNames } from "@ember-decorators/component";
|
2017-11-21 11:53:09 +01:00
|
|
|
import NotificationOptionsComponent from "select-kit/components/notifications-button";
|
2024-08-23 12:17:07 +01:00
|
|
|
import {
|
|
|
|
pluginApiIdentifiers,
|
|
|
|
selectKitOptions,
|
|
|
|
} from "select-kit/components/select-kit";
|
2017-10-20 05:34:10 -07:00
|
|
|
|
2024-08-23 12:17:07 +01:00
|
|
|
@classNames("group-notifications-button")
|
|
|
|
@selectKitOptions({
|
|
|
|
i18nPrefix: "groups.notifications",
|
|
|
|
})
|
|
|
|
@pluginApiIdentifiers("group-notifications-button")
|
|
|
|
export default class GroupNotificationsButton extends NotificationOptionsComponent {}
|