fix: manually specify params

This commit is contained in:
Zomatree
2025-11-18 14:57:34 +00:00
parent d198796fde
commit 7780aa69c0
76 changed files with 298 additions and 33 deletions

View File

@@ -8,6 +8,10 @@ use rocket::{serde::json::Json, State};
/// Gets a webhook with a token
#[utoipa::path(
tag = "Webhooks",
params(
("webhook_id" = Reference, Path),
("token" = String, Path),
),
responses(
(status = 200, body = Webhook),
),