summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJannik Lorenz2016-04-23 12:58:24 +0200
committerJannik Lorenz2016-04-23 12:58:24 +0200
commitd7648e9ceaedf425d344292c77692ad67993a99f (patch)
tree1a98729514ff5747efeb664900609d9f6cb974d9 /lib
parentfa50745a8df5aa615f20d26964e84173381f2542 (diff)
Hide Dropbox and Google Drive in Import/ Export when disabled
Diffstat (limited to 'lib')
-rw-r--r--lib/config.js8
-rw-r--r--lib/response.js12
2 files changed, 12 insertions, 8 deletions
diff --git a/lib/config.js b/lib/config.js
index 6738d4a8..64d2056a 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -25,7 +25,7 @@ var db = config.db || {
};
// ssl path
-var sslkeypath = config.sslkeypath || ''
+var sslkeypath = config.sslkeypath || '';
var sslcertpath = config.sslcertpath || '';
var sslcapath = config.sslcapath || '';
var dhparampath = config.dhparampath || '';
@@ -61,6 +61,7 @@ var twitter = config.twitter || false;
var github = config.github || false;
var dropbox = config.dropbox || false;
var imgur = config.imgur || false;
+var googleDrive = config.googleDrive || false;
function getserverurl() {
var url = '';
@@ -111,5 +112,6 @@ module.exports = {
twitter: twitter,
github: github,
dropbox: dropbox,
- imgur: imgur
-}; \ No newline at end of file
+ imgur: imgur,
+ googleDrive: googleDrive,
+};
diff --git a/lib/response.js b/lib/response.js
index 7a75e234..043fdd8c 100644
--- a/lib/response.js
+++ b/lib/response.js
@@ -48,7 +48,7 @@ var response = {
showNote: showNote,
showPublishNote: showPublishNote,
showPublishSlide: showPublishSlide,
- showIndex: showIndex,
+ showIndex: showIndex,
noteActions: noteActions,
publishNoteActions: publishNoteActions,
githubActions: githubActions
@@ -72,7 +72,7 @@ function responseError(res, code, detail, msg) {
code: code,
detail: detail,
msg: msg,
- useCDN: config.usecdn
+ useCDN: config.usecdn
});
res.write(content);
res.end();
@@ -95,6 +95,7 @@ function showIndex(req, res, next) {
twitter: config.twitter,
github: config.github,
dropbox: config.dropbox,
+ googleDrive: config.googleDrive,
});
res.write(content);
res.end();
@@ -125,6 +126,7 @@ function responseHackMD(res, note) {
twitter: config.twitter,
github: config.github,
dropbox: config.dropbox,
+ googleDrive: config.googleDrive,
});
var buf = html;
res.writeHead(200, {
@@ -355,7 +357,7 @@ function publishNoteActions(req, res, next) {
res.redirect(config.serverurl + '/' + (note.alias ? note.alias : LZString.compressToBase64(note.id)));
break;
default:
- res.redirect(config.serverurl + '/s/' + note.shortid);
+ res.redirect(config.serverurl + '/s/' + note.shortid);
break;
}
});
@@ -370,7 +372,7 @@ function githubActions(req, res, next) {
githubActionGist(req, res, note);
break;
default:
- res.redirect(config.serverurl + '/' + noteId);
+ res.redirect(config.serverurl + '/' + noteId);
break;
}
});
@@ -470,4 +472,4 @@ var render = function (res, title, markdown) {
}));
};
-module.exports = response; \ No newline at end of file
+module.exports = response;