Add a alias from organisation to organization (#45688)
Since 'organization' is the spelling used accross all others modules, I think it would be better to at least have this one as a alias. Organisation is the UK/Australia/NZ spelling, while organization is the US one.
This commit is contained in:
parent
52c20bbd3f
commit
bef1e5621b
1 changed files with 3 additions and 1 deletions
|
@ -125,6 +125,7 @@ options:
|
|||
organisation:
|
||||
description:
|
||||
- Organisation
|
||||
aliases: [ organization ]
|
||||
override_pw_history:
|
||||
type: bool
|
||||
default: 'no'
|
||||
|
@ -330,7 +331,8 @@ def main():
|
|||
type='list',
|
||||
aliases=['mobileTelephoneNumber']),
|
||||
organisation=dict(default=None,
|
||||
type='str'),
|
||||
type='str',
|
||||
aliases=['organization']),
|
||||
overridePWHistory=dict(default=False,
|
||||
type='bool',
|
||||
aliases=['override_pw_history']),
|
||||
|
|
Loading…
Reference in a new issue