Merge pull request #264 from coralproject/postmod-default

Update default setting to POST moderation
This commit is contained in:
David Erwin
2017-01-27 11:16:36 -05:00
committed by GitHub
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ program
.description('initilizes the talk settings')
.action(() => {
const defaults = {
moderation: 'PRE',
moderation: 'POST',
wordlist: {
banned: [],
suspect: []
+1 -1
View File
@@ -4,7 +4,7 @@ module.exports = () => Promise.all([
// Upsert the settings object.
SettingsService.init({
moderation: 'PRE',
moderation: 'POST',
wordlist: {
banned: [],
suspect: []
+1 -1
View File
@@ -23,7 +23,7 @@ const SettingSchema = new Schema({
'PRE',
'POST'
],
default: 'PRE'
default: 'POST'
},
infoBoxEnable: {
type: Boolean,