lbry-desktop/web/middleware/iframe-destroyer.js
2021-02-18 17:24:31 -05:00

15 lines
307 B
JavaScript

const PAGES = require('../../ui/constants/pages');
async function iframeDestroyerMiddleware(ctx, next) {
const {
request: { path },
} = ctx;
if (!path.startsWith(`/$/${PAGES.EMBED}`)) {
ctx.set('X-Frame-Options', 'DENY');
}
return next();
}
module.exports = iframeDestroyerMiddleware;