From 3cd65e4c268f881a1da1643244a0b0c00625446a Mon Sep 17 00:00:00 2001 From: Hyungi Ahn Date: Mon, 6 Apr 2026 15:15:15 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=82=AC=EC=9D=B4=EB=93=9C=EB=B0=94=20?= =?UTF-8?q?=ED=8A=B8=EB=A6=AC=EC=97=90=EC=84=9C=20News=20=EC=A0=9C?= =?UTF-8?q?=EC=99=B8=20+=20=EB=89=B4=EC=8A=A4=20=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=A7=80=20=E2=98=B0=20=EC=88=A8=EA=B9=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - tree API: ai_domain != 'News' 필터 - +layout: /news 경로에서 사이드바 토글 버튼 숨김 - DB: 뉴스 ai_sub_group을 신문사명으로 재설정 Co-Authored-By: Claude Opus 4.6 (1M context) --- app/api/documents.py | 2 +- frontend/src/routes/+layout.svelte | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/api/documents.py b/app/api/documents.py index ff11fe0..701f664 100644 --- a/app/api/documents.py +++ b/app/api/documents.py @@ -103,7 +103,7 @@ async def get_document_tree( sql_text(""" SELECT ai_domain, COUNT(*) FROM documents - WHERE ai_domain IS NOT NULL AND ai_domain != '' + WHERE ai_domain IS NOT NULL AND ai_domain != '' AND ai_domain != 'News' AND deleted_at IS NULL GROUP BY ai_domain ORDER BY ai_domain diff --git a/frontend/src/routes/+layout.svelte b/frontend/src/routes/+layout.svelte index 1cb7e0b..3512d28 100644 --- a/frontend/src/routes/+layout.svelte +++ b/frontend/src/routes/+layout.svelte @@ -62,6 +62,7 @@