chat.js 227 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 'use strict'; exports.page = (req, res, next) => { res.locals.module = 'service'; res.locals.page = 'chat'; res.locals.pageStyle = 'service-chat'; res.locals.width750 = true; res.render('chat/index'); };