mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add "from" as an alias to "msg_from" in the hipchat module, to match docs.
This commit is contained in:
parent
fc8ec016d6
commit
37970112d9
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ def main():
|
||||||
token=dict(required=True),
|
token=dict(required=True),
|
||||||
room=dict(required=True),
|
room=dict(required=True),
|
||||||
msg=dict(required=True),
|
msg=dict(required=True),
|
||||||
msg_from=dict(default="Ansible"),
|
msg_from=dict(default="Ansible", aliases=['from']),
|
||||||
color=dict(default="yellow", choices=["yellow", "red", "green",
|
color=dict(default="yellow", choices=["yellow", "red", "green",
|
||||||
"purple", "gray", "random"]),
|
"purple", "gray", "random"]),
|
||||||
msg_format=dict(default="text", choices=["text", "html"]),
|
msg_format=dict(default="text", choices=["text", "html"]),
|
||||||
|
|
Loading…
Reference in a new issue