Skip to content

Commit

Permalink
Fix [#10] 이력서 제목 디폴트값으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chaentopia committed May 18, 2024
1 parent bc4f323 commit 9ca4040
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void createResume(
User findUser = userRepository.findById(resumeCreateRequest.userId()).orElseThrow(
() -> new BusinessException(ErrorMessage.USER_NOT_FOUND_BY_ID_EXCEPTION)
);
Resume resume = Resume.create(findUser, resumeCreateRequest.title());
Resume resume = Resume.create(findUser, "내 이력서");
resumeRepository.save(resume);
}
}

0 comments on commit 9ca4040

Please sign in to comment.