Files
talk/init.js
T
David Jay 1931c85d67 Merging
2016-11-21 19:23:29 -05:00

16 lines
343 B
JavaScript

const Setting = require('./models/setting');
const wordlist = require('./services/wordlist');
module.exports = () => Promise.all([
// Upsert the settings object.
Setting
.init({id: '1', moderation: 'pre'})
.then(() => {
// Load in the wordlist now that settings have been init'd.
return wordlist.init();
})
]);