From 112fd4c8fc15a8bfc279d812417908ce57fd68ef Mon Sep 17 00:00:00 2001 From: NamH Date: Sat, 6 Jan 2024 22:35:30 +0700 Subject: [PATCH] fix(API): #1409 fix wrong prefix for threads api (#1410) Signed-off-by: James Co-authored-by: James --- core/src/node/api/routes/v1.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/node/api/routes/v1.ts b/core/src/node/api/routes/v1.ts index 4f637e392..5994ae6e0 100644 --- a/core/src/node/api/routes/v1.ts +++ b/core/src/node/api/routes/v1.ts @@ -5,7 +5,7 @@ export const v1Router = async (app: HttpServer) => { // MARK: External Routes app.register(commonRouter) app.register(threadRouter, { - prefix: '/thread', + prefix: '/threads', }) // MARK: Internal Application Routes