File tree Expand file tree Collapse file tree
src/main/java/sopt/comfit Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -152,7 +152,9 @@ private BooleanExpression scaleEq(EScale scale) {
152152 }
153153
154154 private BooleanExpression recruitingEq (Boolean isRecruited ) {
155- return isRecruited != null ? company .isRecruiting .eq (isRecruited ) : null ;
155+ return Boolean .TRUE .equals (isRecruited )
156+ ? company .isRecruiting .isTrue ()
157+ : null ;
156158 }
157159
158160 private OrderSpecifier <?> getOrderSpecifier (ESort sort ) {
Original file line number Diff line number Diff line change 77import io .swagger .v3 .oas .models .servers .Server ;
88import org .springframework .context .annotation .Bean ;
99import org .springframework .context .annotation .Configuration ;
10+ import org .springframework .context .annotation .Profile ;
1011
12+ @ Profile ("!prod" )
1113@ Configuration
1214public class SwaggerConfig {
1315
You can’t perform that action at this time.
0 commit comments