-
I was really interested in your backend model but I couldn't build the image with docker compose.
When I run the command, I get this in the terminal:
#0 508.8 Compiling codefee-works-api v0.1…
-
Currently, the `context_path` field in the path attribute macro can accept a string or a variable. However, one feature that I am missing is being able to specify multiple context paths. My particular…
-
Hey! I use:
```
#[utoipa::path(
get,
path = "/api/v1/items",
responses(
(status = 200, body = String),
(status = 400, body = String)
),
security(
("x-client-n…
-
Is this possible to define `minItems` and `maxItems` in `request_body` for array type parameters?
I would like to define sth. like:
```rust
#[utoipa::path(
post,
path = "/",
reque…
-
Dot-P updated
2 weeks ago
-
```rust
#[utoipa::path(
tag = "Master Storage",
context_path = "/api/v1/storage",
)]
#[post("/")]
pub async fn store(
pool: Data,
form: MultipartForm,
socket: Data,
) -> Result {
…
-
### Feature Description
Currently, the payments create request in documentation has only one example.
![Screenshot 2023-05-23 at 1 45 02 PM](https://github.com/juspay/hyperswitch/assets/48803246/c…
-
Hi, I have forked a rust project which has a lot of huge types, so I've added utoipa::ToSchema on all the types but now I need register them recursively, which is a lot of work.
I've seen that this…
-
Because it's easy to accidentally forget to include a schema for a new struct in the Utoipa macros, we should add linting for OpenAPI specifications in GitHub Actions.
_Originally posted by @praseo…
-
Hello 👋🏻
I'm trying to use this crate to automatically list my routes and models in the the utoipa macro. I tried to modularize my API into nested modules, each containing a `models` and a `routes`…