lint: src/node/hooks/express/admin.js
parent
acf889b7de
commit
3a586a7aad
|
@ -1,8 +1,9 @@
|
|||
const eejs = require('ep_etherpad-lite/node/eejs');
|
||||
'use strict';
|
||||
const eejs = require('../../eejs');
|
||||
|
||||
exports.expressCreateServer = function (hook_name, args, cb) {
|
||||
exports.expressCreateServer = (hookName, args, cb) => {
|
||||
args.app.get('/admin', (req, res) => {
|
||||
if ('/' != req.path[req.path.length - 1]) return res.redirect('./admin/');
|
||||
if ('/' !== req.path[req.path.length - 1]) return res.redirect('./admin/');
|
||||
res.send(eejs.require('ep_etherpad-lite/templates/admin/index.html', {req}));
|
||||
});
|
||||
return cb();
|
||||
|
|
Loading…
Reference in New Issue