From 0bdd429d87633b8563e2d50aa5544712d18654bf Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Fri, 27 Jun 2025 17:37:13 +0800 Subject: [PATCH] :bug: Fix realm chat controllers path typo --- DysonNetwork.Sphere/Realm/RealmChatController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DysonNetwork.Sphere/Realm/RealmChatController.cs b/DysonNetwork.Sphere/Realm/RealmChatController.cs index 7e7795e..b884c17 100644 --- a/DysonNetwork.Sphere/Realm/RealmChatController.cs +++ b/DysonNetwork.Sphere/Realm/RealmChatController.cs @@ -6,7 +6,7 @@ using Microsoft.EntityFrameworkCore; namespace DysonNetwork.Sphere.Realm; [ApiController] -[Route("/realm/{slug}")] +[Route("/realms/{slug}")] public class RealmChatController(AppDatabase db, RealmService rs) : ControllerBase { [HttpGet("chat")] @@ -32,4 +32,4 @@ public class RealmChatController(AppDatabase db, RealmService rs) : ControllerBa return Ok(chatRooms); } -} \ No newline at end of file +}