spee.ch/server/controllers/pages/sendVideoEmbedPage.js

11 lines
324 B
JavaScript
Raw Normal View History

2018-06-06 04:34:24 +02:00
const { details: { host } } = require('@config/siteConfig');
2018-03-29 18:48:32 +02:00
2018-06-26 04:04:17 +02:00
const sendVideoEmbedPage = ({ params }, res) => {
2018-03-29 20:40:47 +02:00
const claimId = params.claimId;
const name = params.name;
// get and render the content
res.status(200).render('embed', { layout: 'embed', host, claimId, name });
2018-03-29 18:48:32 +02:00
};
2018-06-26 04:04:17 +02:00
module.exports = sendVideoEmbedPage;