diff --git a/backend/app/routers/dashboard.py b/backend/app/routers/dashboard.py index d44ebb1..da203c6 100644 --- a/backend/app/routers/dashboard.py +++ b/backend/app/routers/dashboard.py @@ -469,15 +469,8 @@ async def create_project( db.commit() - # 활동 로그 기록 - ActivityLogger.log_activity( - db=db, - user_id=current_user.get('user_id'), - action="CREATE_PROJECT", - target_type="PROJECT", - target_id=new_project.id, - details=f"프로젝트 생성: {official_project_code} - {project_name}" - ) + # TODO: 활동 로그 기록 (추후 구현) + # ActivityLogger 사용법 확인 필요 return { "success": True, @@ -595,15 +588,7 @@ async def update_project_name( db.commit() - # 활동 로그 기록 - ActivityLogger.log_activity( - db=db, - user_id=current_user.get('user_id'), - action="UPDATE_PROJECT", - target_type="PROJECT", - target_id=project_id, - details=f"프로젝트 이름 변경: {job_name}" - ) + # TODO: 활동 로그 기록 (추후 구현) return { "success": True,