正在显示
2 个修改的文件
包含
4 行增加
和
1 行删除
... | ... | @@ -7,6 +7,9 @@ exports = module.exports = function (settings, logger) { |
7 | 7 | router.get('/', function (req, res, next) { |
8 | 8 | res.render('index', { 'csrfToken': 'xxxx' }); |
9 | 9 | }); |
10 | + router.get('/login', function (req, res, next) { | |
11 | + res.render('index', { 'csrfToken': 'xxxx' }); | |
12 | + }); | |
10 | 13 | app.use('/', router); |
11 | 14 | app.use(settings.proxy.signOutUrl, function (req, res, next) { |
12 | 15 | req.session.token = null; | ... | ... |
请
注册
或
登录
后发表评论