-rw-r--r-- | backend/node/properties/node.properties.json | 4 | ||||
-rw-r--r-- | backend/node/src/app.js | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backend/node/properties/node.properties.json b/backend/node/properties/node.properties.json index 6bb8860..e6f9e7e 100644 --- a/backend/node/properties/node.properties.json +++ b/backend/node/properties/node.properties.json @@ -1,4 +1,4 @@ { - "request.path": "/json", - "dump.path": "../dump", + "request.path": "../json", + "dump.path": "/../dump", "should.pay.toll": "false" diff --git a/backend/node/src/app.js b/backend/node/src/app.js index ca05e6f..bbc62f8 100644 --- a/backend/node/src/app.js +++ b/backend/node/src/app.js @@ -38,3 +38,3 @@ app.use(require('express-session')({secret:'99 little bugs in the code', key:'si app.post('/json',clipperz.json); -app.get('/beta/dump',clipperz.dump); +app.get('/dump',clipperz.dump); |