mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 23:46:14 -04:00
Add req
to EJS render args when possible
This makes it possible for EJS templates and `eejsBlock_*` hook functions to access the user's express-session state.
This commit is contained in:
parent
cf43156390
commit
ed5a635f4c
4 changed files with 11 additions and 14 deletions
|
@ -3,7 +3,7 @@ var eejs = require('ep_etherpad-lite/node/eejs');
|
|||
exports.expressCreateServer = function (hook_name, args, cb) {
|
||||
args.app.get('/admin', function(req, res) {
|
||||
if('/' != req.path[req.path.length-1]) return res.redirect('./admin/');
|
||||
res.send( eejs.require("ep_etherpad-lite/templates/admin/index.html", {}) );
|
||||
res.send(eejs.require('ep_etherpad-lite/templates/admin/index.html', {req}));
|
||||
});
|
||||
return cb();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue