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/15 21:17:01 UTC

[13/45] incubator-ignite git commit: IGNITE-843 Code format.

IGNITE-843 Code format.


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

Branch: refs/heads/ignite-1121
Commit: 9c93dcc4e3bf2013a9d1f72f967d0ff7912c7037
Parents: 5a0ae67
Author: AKuznetsov <ak...@gridgain.com>
Authored: Tue Jul 14 11:58:48 2015 +0700
Committer: AKuznetsov <ak...@gridgain.com>
Committed: Tue Jul 14 11:58:48 2015 +0700

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


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/9c93dcc4/modules/web-control-center/nodejs/routes/admin.js
----------------------------------------------------------------------
diff --git a/modules/web-control-center/nodejs/routes/admin.js b/modules/web-control-center/nodejs/routes/admin.js
index 59749c7..9731603 100644
--- a/modules/web-control-center/nodejs/routes/admin.js
+++ b/modules/web-control-center/nodejs/routes/admin.js
@@ -25,7 +25,7 @@ router.get('/', function (req, res) {
 /**
  * Get list of user accounts.
  */
-router.post('/list', function(req, res) {
+router.post('/list', function (req, res) {
     db.Account.find({}).select('-attempts -hash -salt').exec(function (err, users) {
         if (err)
             return res.status(500).send(err.message);