You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Check if the given user has access.
*
* @param username The username to check.
* @param password The password to check.
* @return 'allow' or 'deny'.
*/
The generated API doc is correct. However, with this:
/**
* Check if the given user has access to RabbitMQ.
*
* @param username
* The username to check.
* @param password
* The password to check.
* @return 'allow' or 'deny' and user tags.
*/
The generated yaml file lacks the description.
Expected:
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
username:
type: string
description: "The username to check."
nullable: false
password:
type: string
description: The password to check.
nullable: false
Given the following Javadoc:
The generated API doc is correct. However, with this:
The generated yaml file lacks the description.
Expected:
Actual:
The text was updated successfully, but these errors were encountered: