fix: 사이드바 트리에서 News 제외 + 뉴스 페이지 ☰ 숨김
- tree API: ai_domain != 'News' 필터 - +layout: /news 경로에서 사이드바 토글 버튼 숨김 - DB: 뉴스 ai_sub_group을 신문사명으로 재설정 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user