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

11 lines
324 B
JavaScript
Raw Normal View History

2018-06-05 19:34:24 -07:00
const { details: { host } } = require('@config/siteConfig');
2018-03-29 09:48:32 -07:00
2018-06-25 19:04:17 -07:00
const sendVideoEmbedPage = ({ params }, res) => {
2018-03-29 11:40:47 -07: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 09:48:32 -07:00
};
2018-06-25 19:04:17 -07:00
module.exports = sendVideoEmbedPage;