chore: update routes to use utoipa

This commit is contained in:
Zomatree
2025-11-17 22:13:07 +00:00
parent ac60b2c795
commit 43c94b68b0
110 changed files with 891 additions and 231 deletions

View File

@@ -7,10 +7,16 @@ use revolt_result::{create_error, Result};
use rocket::State;
use rocket_empty::EmptyResponse;
/// # Acknowledge Message
/// Acknowledge Message
///
/// Lets the server and all other clients know that we've seen this message id in this channel.
#[utoipa::path(tag = "Messaging")]
#[utoipa::path(
tag = "Messaging",
security(("Session-Token" = [])),
responses(
(status = 204)
)
)]
#[put("/<target>/ack/<message>")]
pub async fn ack(
db: &State<Database>,