mirror of https://github.com/status-im/codimd.git
Updated to allow CORS in download as API
This commit is contained in:
parent
dcebc75d39
commit
1fb42bd276
|
@ -324,6 +324,7 @@ function actionDownload(req, res, noteId) {
|
||||||
var body = LZString.decompressFromBase64(data.rows[0].content);
|
var body = LZString.decompressFromBase64(data.rows[0].content);
|
||||||
var title = Note.getNoteTitle(body);
|
var title = Note.getNoteTitle(body);
|
||||||
res.writeHead(200, {
|
res.writeHead(200, {
|
||||||
|
'Access-Control-Allow-Origin': '*', //allow CORS as API
|
||||||
'Content-Type': 'text/markdown; charset=UTF-8',
|
'Content-Type': 'text/markdown; charset=UTF-8',
|
||||||
'Cache-Control': 'private',
|
'Cache-Control': 'private',
|
||||||
'Content-disposition': 'attachment; filename=' + title + '.md',
|
'Content-disposition': 'attachment; filename=' + title + '.md',
|
||||||
|
|
Loading…
Reference in New Issue