'use strict'; const eejs = require('../../eejs'); /** * Add the admin navigation link * @param hookName {String} the name of the hook * @param args {Object} the object containing the arguments * @param {Function} cb the callback function * @return {*} */ exports.expressCreateServer = (hookName, args, cb) => { args.app.get('/admin', (req, res) => { 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(); };