Skip to content

Commit

Permalink
fix(profile): filter dto에서 reqruit 오타 recruit으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobhboy committed Apr 25, 2024
1 parent 2e91d21 commit 88ae866
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@

public record FilterRequest(
@RequestParam(required = false)
Boolean isReqruited,
Boolean isRecruited,
@RequestParam(required = false)
List<Major> majors,
@RequestParam(required = false)
Long cardinal
) {
public Filter toDomain() {
return new Filter(
isReqruited,
isRecruited,
majors,
cardinal
);
Expand Down

0 comments on commit 88ae866

Please sign in to comment.