redirect /admin to /admin/ so that the relative links work

pull/1615/head
Marcel Klehr 2013-03-14 15:59:39 +01:00
parent babb33d825
commit 5fe60e7221
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,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", {}) );
});
}