summaryrefslogtreecommitdiff
path: root/lib/models/note.js
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2018-03-25 19:15:17 +0200
committerGitHub2018-03-25 19:15:17 +0200
commit57c47a65dde59d355fba702bc91c63eebcc2533c (patch)
treed24e3e7a226d4587497873a0a73a29110c21832c /lib/models/note.js
parentea1d35eddb12815f0d28b4531d6671ed8a1a4e23 (diff)
parent2411dffa2ce997370a636ed56cc73bcc4661ec7f (diff)
Merge pull request #758 from SISheogorath/cleanup/config
Change config to camel case with backwards compatibility
Diffstat (limited to '')
-rw-r--r--lib/models/note.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/models/note.js b/lib/models/note.js
index d615bcf7..69393dd4 100644
--- a/lib/models/note.js
+++ b/lib/models/note.js
@@ -148,7 +148,7 @@ module.exports = function (sequelize, DataTypes) {
}
}).then(function (note) {
if (note) {
- let filePath = path.join(config.docspath, noteId + '.md')
+ let filePath = path.join(config.docsPath, noteId + '.md')
if (Note.checkFileExist(filePath)) {
// if doc in filesystem have newer modified time than last change time
// then will update the doc in db
@@ -190,7 +190,7 @@ module.exports = function (sequelize, DataTypes) {
return callback(null, note.id)
}
} else {
- var filePath = path.join(config.docspath, noteId + '.md')
+ var filePath = path.join(config.docsPath, noteId + '.md')
if (Note.checkFileExist(filePath)) {
Note.create({
alias: noteId,
@@ -520,16 +520,16 @@ module.exports = function (sequelize, DataTypes) {
var body = null
let filePath = null
if (!note.alias) {
- filePath = config.defaultnotepath
+ filePath = config.defaultNotePath
} else {
- filePath = path.join(config.docspath, note.alias + '.md')
+ filePath = path.join(config.docsPath, note.alias + '.md')
}
if (Note.checkFileExist(filePath)) {
var fsCreatedTime = moment(fs.statSync(filePath).ctime)
body = fs.readFileSync(filePath, 'utf8')
note.title = Note.parseNoteTitle(body)
note.content = body
- if (filePath !== config.defaultnotepath) {
+ if (filePath !== config.defaultNotePath) {
note.createdAt = fsCreatedTime
}
}
@@ -537,7 +537,7 @@ module.exports = function (sequelize, DataTypes) {
// if no permission specified and have owner then give default permission in config, else default permission is freely
if (!note.permission) {
if (note.ownerId) {
- note.permission = config.defaultpermission
+ note.permission = config.defaultPermission
} else {
note.permission = 'freely'
}