diff options
Diffstat (limited to 'src/core/core.py')
-rw-r--r-- | src/core/core.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.py b/src/core/core.py index d49845dc..d53782b5 100644 --- a/src/core/core.py +++ b/src/core/core.py @@ -1809,6 +1809,9 @@ class Core(object): desc=_('Informs you of the last activity of a JID.'), shortdesc=_('Get the activity of someone.'), completion=self.completion_last_activity) + self.register_command('ad-hoc', self.command_adhoc, + usage='<jid>', + shortdesc=_('List available ad-hoc commands on the given jid')) if config.get('enable_user_activity', True): self.register_command('activity', self.command_activity, @@ -1921,6 +1924,7 @@ class Core(object): command_plugins = commands.command_plugins command_message = commands.command_message command_xml_tab = commands.command_xml_tab + command_adhoc = commands.command_adhoc command_self = commands.command_self completion_help = completions.completion_help completion_status = completions.completion_status |