mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-02-01 03:12:42 +01:00
Merge pull request #1375 from jhollinger/develop
listAllPads should return an object, not an arraay. issue #1374
This commit is contained in:
commit
74c86da0ae
2 changed files with 4 additions and 4 deletions
|
@ -46,7 +46,7 @@ exports.createGroupPad = groupManager.createGroupPad;
|
||||||
/**PADLIST FUNCTION****/
|
/**PADLIST FUNCTION****/
|
||||||
/**********************/
|
/**********************/
|
||||||
|
|
||||||
exports.listAllPads = padManager.getPads;
|
exports.listAllPads = padManager.listAllPads;
|
||||||
|
|
||||||
/**********************/
|
/**********************/
|
||||||
/**AUTHOR FUNCTIONS****/
|
/**AUTHOR FUNCTIONS****/
|
||||||
|
|
|
@ -158,12 +158,12 @@ exports.getPad = function(id, text, callback)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.getPads = function(callback)
|
exports.listAllPads = function(callback)
|
||||||
{
|
{
|
||||||
if(callback != null){
|
if(callback != null){
|
||||||
callback(null,padList.getPads());
|
callback(null,{padIDs: padList.getPads()});
|
||||||
}else{
|
}else{
|
||||||
return padList.getPads();
|
return {padIDs: padList.getPads()};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue