From 0471d4b2fa1e39635fcb633eda49107defc13684 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Corn=C3=A9=20Dorrestijn?= Date: Tue, 25 Feb 2025 13:06:24 +0100 Subject: [PATCH] Added missing api url part to create_note --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index ac79de3..17f6751 100644 --- a/index.ts +++ b/index.ts @@ -583,7 +583,7 @@ async function createNote( ): Promise { // ⚙️ 응답 타입은 GitLab API 문서에 따라 조정 가능 const url = new URL( - `${GITLAB_API_URL}/projects/${encodeURIComponent( + `${GITLAB_API_URL}/api/v4/projects/${encodeURIComponent( projectId )}/${noteableType}/${noteableIid}/notes` );