lint: src/node/hooks/express/admin.js

pull/4667/head
John McLear 2021-01-21 21:06:52 +00:00 committed by Richard Hansen
parent acf889b7de
commit 3a586a7aad
1 changed files with 4 additions and 3 deletions

View File

@ -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();