File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
src/main/java/clap/server/adapter/inbound/web/task Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 99import io .swagger .v3 .oas .annotations .tags .Tag ;
1010import lombok .RequiredArgsConstructor ;
1111import org .springframework .http .ResponseEntity ;
12- import org .springframework .validation .annotation .Validated ;
1312import org .springframework .web .bind .annotation .*;
1413
1514@ Tag (name = "02. Task [담당자]" )
@@ -22,7 +21,7 @@ public class TeamStatusController {
2221 private final TeamStatusService teamStatusService ;
2322 @ Operation (summary = "팀 현황 필터링 조회 API" )
2423 @ GetMapping ("/filter" )
25- public ResponseEntity <TeamStatusResponse > filterTeamStatus (@ Validated @ ModelAttribute FilterTeamStatusRequest filter ) {
24+ public ResponseEntity <TeamStatusResponse > filterTeamStatus (@ ModelAttribute FilterTeamStatusRequest filter ) {
2625 TeamStatusResponse response = teamStatusService .filterTeamStatus (filter );
2726 return ResponseEntity .ok (response );
2827 }
You can’t perform that action at this time.
0 commit comments