mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 23:42:44 +08:00
14 lines
244 B
JavaScript
14 lines
244 B
JavaScript
const SettingsService = require('./services/settings');
|
|
|
|
module.exports = () => Promise.all([
|
|
|
|
// Upsert the settings object.
|
|
SettingsService.init({
|
|
moderation: 'POST',
|
|
wordlist: {
|
|
banned: [],
|
|
suspect: []
|
|
}
|
|
})
|
|
]);
|