-
Notifications
You must be signed in to change notification settings - Fork 22
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I found a bug that when an interface has a method named without get prefix it will not show in generated swagger:
This interface
public interface NoGetInterface {
String foo();
}will produce empty schema:
components:
schemas:
NoGetInterface:
type: objectwhere in my opinion it should have foo field, like this:
components:
schemas:
NoGetInterface:
type: object
properties:
foo:
type: stringReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request