Skip to content

Commit

Permalink
hotfix: id 반환
Browse files Browse the repository at this point in the history
  • Loading branch information
ori0o0p committed Aug 25, 2024
1 parent a9c35dc commit 8d85f97
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public static SearchResumeResponse of(ResumeModel resume, List<Feedback> feedbac

public record Feedback(String id, String comment, String type, String status, boolean rejected) {
public static SearchResumeResponse.Feedback fromFeedback(FeedbackModel feedback) {
return new SearchResumeResponse.Feedback(null, feedback.comment(), feedback.type().name(), feedback.status().name(), feedback.rejected());
return new SearchResumeResponse.Feedback(feedback.id(), feedback.comment(), feedback.type().name(), feedback.status().name(), feedback.rejected());
}
}
}

0 comments on commit 8d85f97

Please sign in to comment.