fix(project): 프로젝트 생성 시 세션 자동 추가 제거 (아사나처럼 직접 추가)

create_project 의 seed_stages 기본값을 True→False 로. 새 프로젝트는 이제
세션이 0개로 시작하고, 보드에서 "+ 세션 추가"로 직접 만든다. 세션이 하나도
없는 새 프로젝트의 보드 화면에는 안내 문구를 띄운다.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 19:55:54 +09:00
parent 86558dc8c1
commit 3ca0b1de87
7 changed files with 20 additions and 6 deletions
+1 -1
View File
@@ -87,7 +87,7 @@ class ProjectStore:
start_date: str | None = None,
due_date: str | None = None,
created_by: str = "",
seed_stages: bool = True,
seed_stages: bool = False,
) -> dict[str, Any]:
nm = store.validate_project_name(name)
col = store.validate_color(color)