summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2014-06-30 18:29:32 (UTC)
committer Michael Krelin <hacker@klever.net>2014-06-30 18:29:32 (UTC)
commit9b7511c6599e9991ef32742558243e56f65d5f73 (patch) (side-by-side diff)
tree46e6863dd178944d2a7e8cd04bb7028d9f743cad
parent44963f7c48fa76b2bbf1cc8b63b84519c0cc4c6e (diff)
downloadclipperz-9b7511c6599e9991ef32742558243e56f65d5f73.zip
clipperz-9b7511c6599e9991ef32742558243e56f65d5f73.tar.gz
clipperz-9b7511c6599e9991ef32742558243e56f65d5f73.tar.bz2
path adjustments
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--backend/node/properties/node.properties.json4
-rw-r--r--backend/node/src/app.js2
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,5 +1,5 @@
{
- "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
@@ -36,7 +36,7 @@ app.use(require('cookie-parser')('your secret here'));
app.use(require('express-session')({secret:'99 little bugs in the code', key:'sid', store: clipperz.session_store(), resave: false, saveUninitialized: false }));
app.post('/json',clipperz.json);
-app.get('/beta/dump',clipperz.dump);
+app.get('/dump',clipperz.dump);
app.use(EXPRESS.static(PATH.join(__dirname, 'htdocs/')));
if ('development' == app.get('env')) {