mirror of https://github.com/status-im/codimd.git
save to upload folder only when option enabled
This commit is contained in:
parent
a5dad29300
commit
8db6624ae9
2
app.js
2
app.js
|
@ -406,8 +406,10 @@ app.get('/me', function (req, res) {
|
||||||
app.post('/uploadimage', function (req, res) {
|
app.post('/uploadimage', function (req, res) {
|
||||||
var form = new formidable.IncomingForm();
|
var form = new formidable.IncomingForm();
|
||||||
|
|
||||||
|
if (config.imageUploadType === 'filesystem') {
|
||||||
form.uploadDir = "public/uploads";
|
form.uploadDir = "public/uploads";
|
||||||
form.keepExtensions = true;
|
form.keepExtensions = true;
|
||||||
|
}
|
||||||
|
|
||||||
form.parse(req, function (err, fields, files) {
|
form.parse(req, function (err, fields, files) {
|
||||||
if (err || !files.image || !files.image.path) {
|
if (err || !files.image || !files.image.path) {
|
||||||
|
|
Loading…
Reference in New Issue