mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 05:53:38 +08:00
d1cc60c435
Changes made using the ember-native-class-codemod, plus some manual tweaks
14 lines
483 B
JavaScript
14 lines
483 B
JavaScript
import { classNames } from "@ember-decorators/component";
|
|
import NotificationOptionsComponent from "select-kit/components/notifications-button";
|
|
import {
|
|
pluginApiIdentifiers,
|
|
selectKitOptions,
|
|
} from "select-kit/components/select-kit";
|
|
|
|
@classNames("group-notifications-button")
|
|
@selectKitOptions({
|
|
i18nPrefix: "groups.notifications",
|
|
})
|
|
@pluginApiIdentifiers("group-notifications-button")
|
|
export default class GroupNotificationsButton extends NotificationOptionsComponent {}
|