add lintWarning to user.js

This commit is contained in:
MathuraMG 2016-08-12 15:33:23 -04:00
parent 018a8b970c
commit cc62ca23a3
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ const userSchema = new Schema({
fontSize: { type: Number, default: 18 },
indentationAmount: { type: Number, default: 2 },
isTabIndent: { type: Boolean, default: false },
autosave: { type: Boolean, default: true }
autosave: { type: Boolean, default: true },
lintWarning: { type: Boolean, default: false }
}
}, { timestamps: true });