Skip to content
This repository was archived by the owner on May 7, 2024. It is now read-only.

Commit f00f400

Browse files
committed
Remove def node_id from users seed
1 parent 4526b01 commit f00f400

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

api/models/User.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ var defaultModel = _.merge(_.cloneDeep(require('../base/Model')), {
9696
"email": orig.email,
9797
"firstName": orig.firstName,
9898
"lastName": orig.lastName,
99-
"node_id": orig.node_id,
99+
// "node_id": orig.node_id,
100100
"admin": orig.admin,
101101
"active": orig.active
102102
}

config/default-user-seed-data.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function getseedData() {
4444
"email": "admin@some.domain",
4545
"firstName": "Arnold",
4646
"lastName": "Administrator",
47-
"node_id": "http://kong:8001",
47+
// "node_id": "http://kong:8001",
4848
"admin": true,
4949
"active" : true,
5050
"password": "adminadminadmin"
@@ -54,7 +54,7 @@ function getseedData() {
5454
"email": "demo@some.domain",
5555
"firstName": "John",
5656
"lastName": "Doe",
57-
"node_id": "http://kong:8001",
57+
// "node_id": "http://kong:8001",
5858
"admin": false,
5959
"active" : true,
6060
"password": "demodemodemo"

0 commit comments

Comments
 (0)