Skip to content

Commit

Permalink
[FO-1042] 구인구직에 gender 명시되어 있지 않으면 값이 안 나오는 오류 픽스 (FONE1light#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
DoodlesOnMyFood authored Apr 27, 2024
1 parent 20f8bd0 commit dc15084
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class JobOpeningRepositoryImpl(
from(entity(JobOpening::class))
where(
and(
col(JobOpening::type).equal(request.type),
if (request.genders.isNotEmpty()) col(JobOpening::type).equal(request.type) else null,
col(JobOpening::gender).inValues(request.genders),
col(JobOpening::ageMax).greaterThanOrEqualTo(request.ageMin),
col(JobOpening::ageMin).lessThanOrEqualTo(request.ageMax),
Expand Down

0 comments on commit dc15084

Please sign in to comment.