Updates POST comment.

This commit is contained in:
Carlos Nihelton 2023-02-16 08:37:29 -03:00
parent a706b99478
commit 80e395129d
No known key found for this signature in database
GPG Key ID: 6FE346D245197E9A
1 changed files with 1 additions and 5 deletions

View File

@ -409,11 +409,7 @@ class API:
class active_directory:
def GET() -> Optional[ADConnectionInfo]: ...
# POST must validate the payload before configuring the controller,
# which may contain several errors as described in [ADValidationResult]
# simultaneously - such as invalid chars on the admin name and DC name
# starting with a hyphen or a dot. Thus this must returns a List
# of errors [ADValidationResult.OK] on success.
# POST expects input validated by the check methods below:
def POST(data: Payload[ADConnectionInfo]) -> None: ...
class check_domain_name: