yuka1984 / azure-functions-extensions-swashbuckle

MIT License
33 stars 29 forks source link

Group functions in SwaggerUI #23

Closed stephanruhland closed 4 years ago

stephanruhland commented 4 years ago

Hi yuka1984, in my current function implementations every method has its own headline in the ui. Is it possible to group the function methods e.g. by class or by a custom name? Current: image Idea (Tags Attribute?): image

Kind regards

WolfyUK commented 4 years ago

Try applying the ApiExplorerSettings attribute to your Function methods, e.g.:

[ApiExplorerSettings(GroupName = "MyGroup")]
stephanruhland commented 4 years ago

Thank you :)