Repository: incubator-ignite Updated Branches: refs/heads/ignite-843 0b1db97ed -> 55eeb8710
# ignite-843 Add field in account. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/55eeb871 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/55eeb871 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/55eeb871 Branch: refs/heads/ignite-843 Commit: 55eeb8710dd7de18b6b97095c50a75c52be7326a Parents: 0b1db97 Author: Andrey <anovi...@gridgain.com> Authored: Fri Jul 10 12:57:47 2015 +0700 Committer: Andrey <anovi...@gridgain.com> Committed: Fri Jul 10 12:57:47 2015 +0700 ---------------------------------------------------------------------- modules/web-control-center/nodejs/db.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/55eeb871/modules/web-control-center/nodejs/db.js ---------------------------------------------------------------------- diff --git a/modules/web-control-center/nodejs/db.js b/modules/web-control-center/nodejs/db.js index 9630303..319cccf 100644 --- a/modules/web-control-center/nodejs/db.js +++ b/modules/web-control-center/nodejs/db.js @@ -29,6 +29,7 @@ mongoose.connect(config.get('mongoDB:url'), {server: {poolSize: 4}}); // Define account model. var AccountSchema = new Schema({ username: String, + email: String, lastLogin: Date, admin: Boolean });