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
Only way to make it not to "auto tag" it, is to import the handler to the module and use the fully qualified function name same as the list is done.
Another way around this is to use nesting. This can be done with nest attribute on #[openapi(...)] macro or via nesting or merging via methods on OpenApi instance. But as with the paths(...) the nestable module needs to be fully imported otherwise #[openapi(...nest(...), )] will automatically tag the endpoints with the path to the module.
Probably this auto tagging behavior could be controlled via utoipa-config eventually, but no such work has been done.
If I have the following openapi declaration it will tag lookup with base. I don't always want this. How can I force it to not tag lookup in base?
The text was updated successfully, but these errors were encountered: