summaryrefslogtreecommitdiff
path: root/poezio/core/core.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/core/core.py')
-rw-r--r--poezio/core/core.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/poezio/core/core.py b/poezio/core/core.py
index 51c304fa..b491eb00 100644
--- a/poezio/core/core.py
+++ b/poezio/core/core.py
@@ -1759,13 +1759,20 @@ class Core:
shortdesc="Bookmark a room online.",
completion=self.completion.bookmark)
self.register_command(
+ 'accept',
+ self.command.command_accept,
+ usage='[jid]',
+ desc='Allow the provided JID (or the selected contact '
+ 'in your roster), to see your presence.',
+ shortdesc='Allow a user your presence.',)
+ self.register_command(
'add',
self.command.command_add,
usage='<jid>',
desc='Add the specified JID to your roster, ask them to'
' allow you to see his presence, and allow them to'
' see your presence.',
- shortdesc='Add a user to your roster.')
+ shortdesc='Add a user to your roster.')
self.register_command(
'reconnect',
self.command.command_reconnect,