Daniel G. Taylor
Daniel G. Taylor
@bioform is this feature request mostly about rendering URLs? It seems like you could probably use a third-party URL template rendering library for this, something like: ```go const ConfirmEmail =...
@bilus yes I don't think this is supported at the moment. You can get around it by providing your own docs route, for example setting `config.DocsPath = ""` and then...
@srilman thanks for the question! Unfortunately that isn't possible at the moment. Huma does not generate anything from OpenAPI specs itself. It would be possible to create a template for...
@derekssmith this is intended to be used with the route groups and base URL settings as described here: https://huma.rocks/features/bring-your-own-router/#route-groups-base-urls Typically you'd set up a route group with the `/v1` path...
@jchen1122-sibros do you have an example? Do you want Huma to e.g. always produce lower case output? Part of this is controlled by the serialization format and the marshaler implementation,...
Aaaah, thank you @jc-fireball I think I wasn't understanding this before. So you are saying that since something like this works: https://go.dev/play/p/2qbvJKIkt9J you would expect Huma's validation to behave the...
@jc-fireball take a look at #629 and let me know what you think!
@j0urneyK there is an example of how you can do this using the `huma.Context.BodyWriter()` in the SSE implementation here: https://github.com/danielgtaylor/huma/blob/main/sse/sse.go#L162. You could probably do this using a [resolver](https://huma.rocks/features/request-resolvers/?h=resolver) since the...
Are you using a recent version of Boto? The latest OpsWorks API is 2013-02-18 and we support that. The responses from the server are JSON-decoded and returned, so we are...
This looks like it could be a potential bug. I'll have to dig into it a bit further.