listAllPads should return an object, not an arraay. issue #1374

This commit is contained in:
Jordan Hollinger 2013-01-18 11:13:03 -05:00
parent 96989e63c7
commit 858d8e6e71
2 changed files with 4 additions and 4 deletions

View file

@ -46,7 +46,7 @@ exports.createGroupPad = groupManager.createGroupPad;
/**PADLIST FUNCTION****/
/**********************/
exports.listAllPads = padManager.getPads;
exports.listAllPads = padManager.listAllPads;
/**********************/
/**AUTHOR FUNCTIONS****/

View file

@ -158,12 +158,12 @@ exports.getPad = function(id, text, callback)
}
}
exports.getPads = function(callback)
exports.listAllPads = function(callback)
{
if(callback != null){
callback(null,padList.getPads());
callback(null,{padIDs: padList.getPads()});
}else{
return padList.getPads();
return {padIDs: padList.getPads()};
}
}