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
How to describe controller using SWAG* Attributes (and MVCDoc?) to get the well formatted name of SSE Endpoint?
type
[MVCPath('/v1/events')]
[MVCSWAGDefaultSummaryTags('Events')] -> this does not show well-formatted name of endpoint in swagger
TEventsController = class(TMVCSSEController)
protected
function GetServerSentEvents(const LastEventID: String): TMVCSSEMessages; override;
end;
The text was updated successfully, but these errors were encountered:
You can describe your SSE controller using the MVCSwagSummary attribute. The Description parameter of the MVCSwagSummary accepts a string in markdown format.
How to describe controller using SWAG* Attributes (and MVCDoc?) to get the well formatted name of SSE Endpoint?
The text was updated successfully, but these errors were encountered: