register system.multicall for compliance with the multicall spec

This commit is contained in:
Mike Bonnet 2008-08-14 17:16:11 -04:00
parent d1acf91741
commit a12b756e89

View file

@ -60,6 +60,8 @@ class ModXMLRPCRequestHandler(object):
self.register_function(self.system_methodSignature, name="system.methodSignature")
self.register_function(self.system_methodHelp, name="system.methodHelp")
self.register_function(self.multiCall)
# Also register it as system.multicall for standards compliance
self.register_function(self.multiCall, name="system.multicall")
def register_function(self, function, name = None):
if name is None: