Skip to content

Commit

Permalink
feat: 태스크 생성시 활용할 Mock Data 정의
Browse files Browse the repository at this point in the history
  • Loading branch information
seoyoung-dev committed Sep 26, 2024
1 parent 3e71dde commit dcec373
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/team1/BE/seamless/service/TaskService.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public TaskEntity createTask(TaskDTO req) {
ProjectEntity projectEntity = projectRepository.findById(req.getProjectId()).orElseThrow(() -> new BaseHandler(HttpStatus.NOT_FOUND, "존재하지 않는 프로젝트"));

// Guest 기능 구현 이전 이기 때문에 Mock 데이터로 구현
GuestEntity guestEntity = new GuestEntity("test@gmail.com", 1, 0, );
GuestEntity guestEntity = new GuestEntity("test@gmail.com", "1", 0, projectEntity);

TaskEntity taskEntity = new TaskEntity(
req.getName(),
Expand Down

0 comments on commit dcec373

Please sign in to comment.