Corrected bugs on replay and changed posts urls

This commit is contained in:
Thomas FORGIONE
2015-07-09 16:15:10 +02:00
parent e389d1fea8
commit 007da125ae
4 changed files with 14 additions and 14 deletions

View File

@@ -30,9 +30,9 @@ module.exports = function(parent){
Log.debug(' ' + name + ':');
for (var key in urls) {
app.post(key, obj[urls[key]]);
app.post('/posts' + key, obj[urls[key]]);
Log.debug(' ' + key + ' -> ' + name + '.' + urls[key]);
Log.debug(' /posts' + key + ' -> posts.' + name + '.' + urls[key]);
}
Log.debug();