nodebb-plugin-iframely
Version:
Iframely will give you embeds from over 1700 domains, plus previews for the rest of the web.
22 lines (17 loc) • 478 B
JavaScript
;
var Controllers = {};
Controllers.renderAdminPage = function (req, res, next) {
/*
Make sure the route matches your path to template exactly.
If your route was:
myforum.com/some/complex/route/
your template should be:
templates/some/complex/route.tpl
and you would render it like so:
res.render('some/complex/route');
*/
res.render('admin/plugins/iframely', {
title: 'Iframely',
});
};
module.exports = Controllers;