Skip to content
This repository has been archived by the owner on Jun 1, 2019. It is now read-only.

Commit

Permalink
Remove def node_id from users seed
Browse files Browse the repository at this point in the history
  • Loading branch information
pantsel committed Jul 20, 2018
1 parent 4526b01 commit f00f400
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/models/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ var defaultModel = _.merge(_.cloneDeep(require('../base/Model')), {
"email": orig.email,
"firstName": orig.firstName,
"lastName": orig.lastName,
"node_id": orig.node_id,
// "node_id": orig.node_id,
"admin": orig.admin,
"active": orig.active
}
Expand Down
4 changes: 2 additions & 2 deletions config/default-user-seed-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function getseedData() {
"email": "[email protected]",
"firstName": "Arnold",
"lastName": "Administrator",
"node_id": "http://kong:8001",
// "node_id": "http://kong:8001",
"admin": true,
"active" : true,
"password": "adminadminadmin"
Expand All @@ -54,7 +54,7 @@ function getseedData() {
"email": "[email protected]",
"firstName": "John",
"lastName": "Doe",
"node_id": "http://kong:8001",
// "node_id": "http://kong:8001",
"admin": false,
"active" : true,
"password": "demodemodemo"
Expand Down

0 comments on commit f00f400

Please sign in to comment.