Disabling save button on error and updating translations.

This commit is contained in:
David Jay
2016-12-12 19:08:35 -05:00
parent ba8a845741
commit cd63f49a5e
5 changed files with 136 additions and 126 deletions
+9 -1
View File
@@ -38,7 +38,15 @@ const SettingSchema = new Schema({
type: String,
default: ''
},
wordlist: [String]
wordlist: [String],
charCount: {
type: Number,
default: 1000
},
charCountEnable: {
type: Boolean,
default: false
}
}, {
timestamps: {
createdAt: 'created_at',