Skip to content

Commit 76a1b88

Browse files
CLAP-214 Hotfix : 엘라스틱서치 오류 수정중 추가한 파일들 불필요해져서 제거
* CLAP-110 Feature : 담당자별 작업 처리량 조회 API 구현 <footer> - 관련: #73 * CLAP-111 Refactor : 통계 조회 API 리팩토링 및 기능 수정 <footer> - 관련: #74 * 내 작업한 내용에 대한 설명 * 담당자 조회 API 구현 * CLAP-111 Refactor : 통계 조회 API 주소 통합, 리팩토링, 예외처리 <footer> - 관련: #74 * Bug : 프로퍼티파일 수정 * CLAP-104 CI/CD : CI에서 s3.yml 파일 생성하도록 수정 * CLAP-146 Feature : 카테고리 목록 조회 API 구현 <footer> - 관련: #118 * CLAP-147 Feature : 카테고리 수정 API 구현 <footer> - 관련: #119 * CLAP-147 Feature : 카테고리 추가, 수정 API 리뷰반영 수정 <footer> - 관련: #119 * CLAP-148 Feature : 카테고리 삭제 API 구현 <footer> - 관련: #120 * CLAP-148 Feature : 카테고리 삭제 API 수정 <footer> - 관련: #120 * CLAP-148 Docs : 카테고리 API 스웨거 수정 <footer> - 관련: #120 * CLAP-107 Bug : CI test yml파일 key 중복 수정 <footer> - 관련: #60 * CLAP-148 Feature : 카테고리 CUD 리뷰 반영 수정, 조회 반환 양식 수정 <footer> - 관련: #120 * CLAP-214 Cleanup : 통계, 카테고리 미흡한부분 리팩토링 <footer> - 관련: #216 * CLAP-214 Fix : 통계조회 API 파라미터 바인딩 오류 수정 <footer> - 관련: #216 * CLAP-214 Fix : addConverter 수정 <footer> - 관련: #216 * CLAP-214 Hotfix : 추가한 파일들 제거 <footer> - 관련: #216 --------- Co-authored-by: nano-mm <nano123@gachon.ac.kr>
1 parent 98aaa06 commit 76a1b88

File tree

4 files changed

+2
-46
lines changed

4 files changed

+2
-46
lines changed

src/main/java/clap/server/adapter/inbound/web/statistics/FindStatisticsController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public class FindStatisticsController {
3232

3333

3434
@Operation(summary = "기본 통계 API")
35-
@Parameter(name = "periodType", description = "day, week, month", required = true, in = QUERY)
36-
@Parameter(name = "statisticsType", description = "request-by-period, process-by-period, request-by-category, process-by-manager", required = true, in = QUERY)
35+
@Parameter(name = "periodType", required = true, in = QUERY)
36+
@Parameter(name = "statisticsType", required = true, in = QUERY)
3737
@GetMapping
3838
@Secured("ROLE_MANAGER")
3939
public ResponseEntity<List<StatisticsResponse>> aggregateTaskStatistics(@RequestParam PeriodType periodType, @RequestParam StatisticsType statisticsType) {

src/main/java/clap/server/common/utils/StringToPeriodTypeConverter.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/main/java/clap/server/common/utils/StringToStatisticsTypeConverter.java

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/main/java/clap/server/config/web/WebConfig.java

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)