Improve credits
This commit is contained in:
parent
739ffdad8f
commit
f9cd47c1bf
1 changed files with 16 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
#
|
||||
# This script is licensed under GNU GPL version 2.0 or above
|
||||
# (c) 2024 Antonio J. Delgado
|
||||
# (c) 2021 Markus Bergholz https://github.com/markuman/markuman.nextcloud/commits?author=markuman
|
||||
# Based on https://github.com/markuman/markuman.nextcloud/blob/latest/plugins/modules/password.py
|
||||
|
||||
"""Nextcloud Password client"""
|
||||
|
@ -56,6 +57,20 @@ DIOS_MIO = """<?xml version="1.0"?>
|
|||
|
||||
def parameter_spects(spec_arguments):
|
||||
'''Specification of parameters???'''
|
||||
argument_spec = {
|
||||
"host": {
|
||||
"required": False,
|
||||
"type": 'str'
|
||||
},
|
||||
"api_token": {
|
||||
"required": False,
|
||||
"type": "str"
|
||||
},
|
||||
"user": {
|
||||
"required": False,
|
||||
}
|
||||
}
|
||||
}
|
||||
argument_spec = dict(
|
||||
host=dict(required=False, type='str'),
|
||||
api_token=dict(required=False, type='str', no_log=True, aliases=['access_token']),
|
||||
|
|
Loading…
Reference in a new issue