Repository: incubator-ignite Updated Branches: refs/heads/ignite-843 6f3ffa90f -> f1a048483
IGNITE-843 User must be authenticated on /summary page. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/f1a04848 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/f1a04848 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/f1a04848 Branch: refs/heads/ignite-843 Commit: f1a04848323bf80d84d44a1ca52b21aa8cba46d8 Parents: 6f3ffa9 Author: sevdokimov <[email protected]> Authored: Mon Jul 6 12:03:54 2015 +0300 Committer: sevdokimov <[email protected]> Committed: Mon Jul 6 12:04:09 2015 +0300 ---------------------------------------------------------------------- modules/web-control-center/nodejs/app.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/f1a04848/modules/web-control-center/nodejs/app.js ---------------------------------------------------------------------- diff --git a/modules/web-control-center/nodejs/app.js b/modules/web-control-center/nodejs/app.js index 1141b19..6f7c6b8 100644 --- a/modules/web-control-center/nodejs/app.js +++ b/modules/web-control-center/nodejs/app.js @@ -85,6 +85,7 @@ var mustAuthenticated = function (req, res, next) { app.all('/clusters', mustAuthenticated); app.all('/caches', mustAuthenticated); +app.all('/summary', mustAuthenticated); app.use('/', pageRoutes); app.use('/rest/clusters', clustersRouter);
