You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by se...@apache.org on 2015/07/07 22:34:04 UTC

[2/4] incubator-ignite git commit: # IGNITE-843 Bug fix: Add missing "var passport = require('passport'); "

# IGNITE-843 Bug fix: Add missing "var passport = require('passport');"


Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/ef4bb243
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/ef4bb243
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/ef4bb243

Branch: refs/heads/ignite-843
Commit: ef4bb24323c8ca6fff7f61c0ffcc0e394c347027
Parents: 5643ed5
Author: sevdokimov <se...@jetbrains.com>
Authored: Tue Jul 7 22:35:52 2015 +0300
Committer: sevdokimov <se...@jetbrains.com>
Committed: Tue Jul 7 22:35:52 2015 +0300

----------------------------------------------------------------------
 modules/web-control-center/nodejs/routes/public.js | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/ef4bb243/modules/web-control-center/nodejs/routes/public.js
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/routes/public.js b/modules/web-control-center/nodejs/routes/public.js
index 1edf1fc..8383105 100644
--- a/modules/web-control-center/nodejs/routes/public.js
+++ b/modules/web-control-center/nodejs/routes/public.js
@@ -16,6 +16,7 @@
  */
 
 var router = require('express').Router();
+var passport = require('passport');
 
 // GET dropdown-menu template.
 router.get('/select', function(req, res) {