Mercurial > libervia-backend
diff frontends/src/bridge/DBus.py @ 336:953536246d9d
core: added email in registerNewAccount
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 25 May 2011 17:18:05 +0200 |
parents | 5fc5e6a7e5c3 |
children | 4402ac630712 |
line wrap: on
line diff
--- a/frontends/src/bridge/DBus.py Tue May 24 00:56:35 2011 +0200 +++ b/frontends/src/bridge/DBus.py Wed May 25 17:18:05 2011 +0200 @@ -124,8 +124,8 @@ def launchAction(self, action_type, data, profile_key="@DEFAULT@"): return unicode(self.db_req_iface.launchAction(action_type, data, profile_key)) - def registerNewAccount(self, login, password, host, port=5222): - return unicode(self.db_comm_iface.registerNewAccount(login, password, host, port)) + def registerNewAccount(self, login, password, email, host, port=5222): + return unicode(self.db_comm_iface.registerNewAccount(login, password, email, host, port)) def sendMessage(self, to_jid, message, subject='', mess_type="chat", profile_key="@DEFAULT@"): return self.db_comm_iface.sendMessage(to_jid, message, subject, mess_type, profile_key)