mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 17:03:34 +08:00
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
const Setting = require('./models/setting');
|
|
|
|
module.exports = () => Promise.all([
|
|
|
|
// Upsert the settings object.
|
|
Setting.init({id: '1', moderation: 'pre', wordlist: {banned: [], suspect: []}})
|
|
]);
|