File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
src/main/java/clap/server/adapter/inbound/web/task Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 66import clap .server .application .service .task .TeamStatusService ;
77import clap .server .common .annotation .architecture .WebAdapter ;
88import io .swagger .v3 .oas .annotations .Operation ;
9+ import io .swagger .v3 .oas .annotations .tags .Tag ;
910import lombok .RequiredArgsConstructor ;
1011import org .springframework .http .ResponseEntity ;
1112import org .springframework .validation .annotation .Validated ;
1213import org .springframework .web .bind .annotation .*;
1314
15+ @ Tag (name = "02. Task [담당자]" )
16+ @ WebAdapter
1417@ RestController
15- @ RequestMapping ("/api/team-status" )
1618@ RequiredArgsConstructor
17- @ WebAdapter
18- public class TeamStatusController {
19+ @ RequestMapping ( "/api/team-status" )
20+ public class TeamStatusController {
1921
2022 private final TeamStatusService teamStatusService ;
2123 @ Operation (summary = "팀 현황 필터링 조회 API" )
You can’t perform that action at this time.
0 commit comments