Padaccess: Display a reason for refusing access

fix/group-export
Marcel Klehr 2014-03-31 21:54:05 +02:00
parent 31c45bc9b8
commit 70aa7b7543
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ module.exports = function (req, res, callback) {
callback();
//no access
} else {
res.send(403, "403 - Can't touch this");
res.send(403, "403 - Can't touch this: "+accessObj.accessStatus);
}
});
}