mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 18:30:01 +08:00
21 lines
578 B
JavaScript
21 lines
578 B
JavaScript
import translations from './translations.json';
|
|
import OffTopicTag from './components/OffTopicTag';
|
|
import OffTopicFilter from './containers/OffTopicFilter';
|
|
import OffTopicCheckbox from './containers/OffTopicCheckbox';
|
|
import reducer from './reducer';
|
|
|
|
/**
|
|
* coral-plugin-offtopic depends on coral-plugin-viewing-options
|
|
* in other to display filter and use the streamViewingOptions slot
|
|
*/
|
|
|
|
export default {
|
|
translations,
|
|
reducer,
|
|
slots: {
|
|
commentInputDetailArea: [OffTopicCheckbox],
|
|
commentInfoBar: [OffTopicTag],
|
|
viewingOptions: [OffTopicFilter]
|
|
}
|
|
};
|