Skip to content
Snippets Groups Projects
Commit 03d38c8b authored by Lloyd Hilaiel's avatar Lloyd Hilaiel Committed by Shane Tomlinson
Browse files

add Cache-Control headers to prevent IE from caching api responses for in-tree testing primary

parent 2d303987
No related branches found
No related tags found
No related merge requests found
......@@ -51,6 +51,15 @@ exampleServer.use(express.static(path.join(__dirname, "..", "example", "primary"
exampleServer.use(express.bodyParser());
const API_PREFIX = '/api/';
exampleServer.use(function(req, resp, next) {
if (req.url.substr(0, API_PREFIX.length) === API_PREFIX) {
resp.setHeader('Cache-Control', 'no-store, max-age=0');
}
next();
});
exampleServer.get("/api/whoami", function (req, res) {
if (req.session && typeof req.session.user === 'string') return res.json(req.session.user);
return res.json(null);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment