Files
cloudron-box/middleware/contentType.js
T
Girish Ramakrishnan c49de62f25 Move middleware to top level
This allows it to be shared with other servers like the install server
2014-10-28 00:20:44 -07:00

9 lines
171 B
JavaScript

'use strict';
module.exports = function contentType(type) {
return function (req, res, next) {
res.setHeader('Content-Type', type);
next();
};
};