Path style changes #19

Merged
radical merged 7 commits from wip/style-changes into main 2025-05-30 17:18:41 +00:00
Showing only changes of commit 1543a2f485 - Show all commits

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
/// ///