From 1cd16c71a87d3ccad00b3d735c93c45252fe0130 Mon Sep 17 00:00:00 2001 From: Tolmachev Igor Date: Thu, 25 Sep 2025 15:58:14 +0300 Subject: Rename QUEUE tag to QUEUE_MANAGEMENT --- src/routers/queue/manage.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/routers/queue/manage.rs') diff --git a/src/routers/queue/manage.rs b/src/routers/queue/manage.rs index f6587d1..10f38f5 100644 --- a/src/routers/queue/manage.rs +++ b/src/routers/queue/manage.rs @@ -12,7 +12,7 @@ use crate::{ ApiError, ApiResult, AppState, ClientError, GlobalResponses, SuccessResponse, extract::{ApiJson, Auth}, models::Queue, - tags::QUEUE, + tags::QUEUE_MANAGEMENT, }; async fn user_exists(id: i64, db: &DatabaseConnection) -> Result { @@ -71,7 +71,7 @@ struct DeleteQueueRequest { #[utoipa::path( get, path = "/owned", - tag = QUEUE, + tag = QUEUE_MANAGEMENT, summary = "Get owned", description = "Get your queues", responses( @@ -98,7 +98,7 @@ async fn owned(State(state): State, Auth(user): Auth) -> ApiResult