diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2011-05-02 01:13:07 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2011-05-02 01:13:07 -0400 |
| commit | 1bf4b8e5506c1b76fa453e1ae645410a09934c76 (patch) | |
| tree | 7f7de1e8cd2f581adce05ce5ea3d7243f25dcf65 /server/component.py | |
| parent | cc1baf75ab6967f567917ae3486c0275a64937d5 (diff) | |
| download | alias-1bf4b8e5506c1b76fa453e1ae645410a09934c76.tar.gz | |
In-band registration is almost functional.
-still need to hook up the data with the backend
-and check all the error cases
Diffstat (limited to 'server/component.py')
| -rw-r--r-- | server/component.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/component.py b/server/component.py index 198b159..f7fbb25 100644 --- a/server/component.py +++ b/server/component.py @@ -10,7 +10,7 @@ class ObjectComponent(ComponentXMPP): def __init__(self, jid, secret, server, port, root): ComponentXMPP.__init__(self, jid, secret, server, port) self.register_plugin('xep_0030') - self.register_plugin('xep_0077', pconfig = {'root': root}) + self.register_plugin('xep_0077', module="xep_0077") self.plugin['xep_0077'] self.register_plugin("AliasPlugin", module = "alias_plugin", pconfig = {'root': root}) self.add_event_handler("session_start", self.start) |
