mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 16:33:12 +08:00
15 lines
416 B
JavaScript
15 lines
416 B
JavaScript
import translations from './translations.yml';
|
|
import { t } from 'plugin-api/beta/client/services';
|
|
import { createSettingsToggle } from 'talk-plugin-notifications/client/api/factories';
|
|
|
|
const SettingsToggle = createSettingsToggle('onReply', () =>
|
|
t('talk-plugin-notifications-category-reply.toggle_description')
|
|
);
|
|
|
|
export default {
|
|
slots: {
|
|
notificationSettings: [SettingsToggle],
|
|
},
|
|
translations,
|
|
};
|