add header on raw return
This commit is contained in:
parent
0b5010977f
commit
eaf1c72752
|
@ -6,6 +6,7 @@ const content = require('../helpers/content');
|
||||||
async function view(req, res) {
|
async function view(req, res) {
|
||||||
const data = await content.get(req.query.id);
|
const data = await content.get(req.query.id);
|
||||||
if (req.query.raw) {
|
if (req.query.raw) {
|
||||||
|
res.header('Content-Type', 'text/plain');
|
||||||
res.send(data);
|
res.send(data);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue