From 0d1f0ce577e7b1d076c0f7d1bc588c270296de54 Mon Sep 17 00:00:00 2001 From: seungyeoncherry Date: Tue, 3 Jun 2025 22:16:31 +0900 Subject: [PATCH] =?UTF-8?q?=EC=88=98=EC=A0=95=201?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/backend/src/controller/scopeDetection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/backend/src/controller/scopeDetection.ts b/packages/backend/src/controller/scopeDetection.ts index e8d0ea7..4cdfd79 100644 --- a/packages/backend/src/controller/scopeDetection.ts +++ b/packages/backend/src/controller/scopeDetection.ts @@ -4,7 +4,7 @@ import { HttpUtils } from "../utils/http"; const httpUtils = new HttpUtils(); - export class scopeDetection { + export class ScopeDetection { // 쿼리 문자열에서 scope 값을 추출하고 값이 없으면 null 반환, 있다면 문자열 반환. private getScopeFromQuery(query: string | undefined): string | null { if (!query) return null;