Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allows passing the style of a parameter in the openapi spec. #940

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

Nahuel-M
Copy link
Contributor

Allows setting the desired parameter style as documented in the swagger documentation.
Example:

#[oai(path = "/hello", method = "get")]
async fn index(
    &self,
    #[oai(style = "deep_object")] Query(input): Query<String>,
) -> PlainText<String> {
    PlainText(format!("hello, world! {input}"))
}

This currently enables custom ApiExtractors to extract several types of objects from the path, query, or headers.
In the future, I hope to improve the default Query, Path and Header extractors to take the style into account.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant