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