mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 06:31:27 +08:00
14 lines
400 B
JavaScript
14 lines
400 B
JavaScript
import translations from './translations.yml';
|
|
import CheckSpamHook from './containers/CheckSpamHook';
|
|
import SpamLabel from './containers/SpamLabel';
|
|
import SpamCommentDetail from './containers/SpamCommentDetail';
|
|
|
|
export default {
|
|
translations,
|
|
slots: {
|
|
commentInputDetailArea: [CheckSpamHook],
|
|
adminCommentLabels: [SpamLabel],
|
|
adminCommentMoreDetails: [SpamCommentDetail],
|
|
},
|
|
};
|