diff options
author | Maxime Buquet <pep@bouah.net> | 2020-05-07 23:14:55 +0200 |
---|---|---|
committer | Maxime Buquet <pep@bouah.net> | 2020-05-07 23:14:55 +0200 |
commit | 4fe83c7451a9c18397fa1de790de7e9410f7a124 (patch) | |
tree | 94a1310b34bb6dbf60e5028c67ab1c3838afb5bc | |
parent | fa65b1b6607771e9dd8fab25dad4798b62d51b9e (diff) | |
parent | 880f024c6814b70cd97bfeeb8530df73f233c241 (diff) | |
download | poezio-4fe83c7451a9c18397fa1de790de7e9410f7a124.tar.gz poezio-4fe83c7451a9c18397fa1de790de7e9410f7a124.tar.bz2 poezio-4fe83c7451a9c18397fa1de790de7e9410f7a124.tar.xz poezio-4fe83c7451a9c18397fa1de790de7e9410f7a124.zip |
Merge branch 'doc-affiliation' into 'master'
affiliation: fix usage string and add documentation
See merge request poezio/poezio!89
-rw-r--r-- | doc/source/commands.rst | 9 | ||||
-rw-r--r-- | poezio/tabs/muctab.py | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/doc/source/commands.rst b/doc/source/commands.rst index ba0d2866..dab2eceb 100644 --- a/doc/source/commands.rst +++ b/doc/source/commands.rst @@ -336,11 +336,12 @@ MultiUserChat tab commands :sorted: /affiliation - **Usage:** ``/affiliation <nick> <affiliation>`` + **Usage:** ``/affiliation [<nick or jid> <affiliation>]`` - Sets the affiliation of the participant designated by **nick** to the - given **affiliation** (can be one of owner, admin, member, outcast - and none). + Sets the affiliation of the participant designated by **nick** or + **jid** to the given **affiliation** (can be one of owner, admin, + member, outcast and none). If not argument is provided, lists + room affiliations. /role **Usage:** ``/affiliation <nick> <role>`` diff --git a/poezio/tabs/muctab.py b/poezio/tabs/muctab.py index 9543e4c4..73359610 100644 --- a/poezio/tabs/muctab.py +++ b/poezio/tabs/muctab.py @@ -1601,7 +1601,7 @@ class MucTab(ChatTab): @command_args_parser.quoted(0, 2) def command_affiliation(self, args) -> None: """ - /affiliation [<nick or jid> [<affiliation>]] + /affiliation [<nick or jid> <affiliation>] Changes the affiliation of a user affiliations can be: outcast, none, member, admin, owner """ |