docs: change path in comments

This commit is contained in:
Radical 2025-05-29 20:13:01 +02:00
parent 66c3aef609
commit 1543a2f485

View file

@ -1,4 +1,4 @@
//! `/api/v1/servers/{uuid}/channels/{uuid}/messages` Endpoints related to channel messages //! `/api/v1/channels/{uuid}/messages` Endpoints related to channel messages
use crate::{ use crate::{
api::v1::auth::check_access_token, error::Error, structs::{Channel, Member}, utils::{get_auth_header, global_checks}, Data api::v1::auth::check_access_token, error::Error, structs::{Channel, Member}, utils::{get_auth_header, global_checks}, Data
@ -13,7 +13,7 @@ struct MessageRequest {
offset: i64, offset: i64,
} }
/// `GET /api/v1/servers/{uuid}/channels/{uuid}/messages` Returns user with the given UUID /// `GET /api/v1/channels/{uuid}/messages` Returns user with the given UUID
/// ///
/// requires auth: yes /// requires auth: yes
/// ///