라벨링 툴 라벨러 목록 상태 필터 추가
This commit is contained in:
@@ -43,8 +43,10 @@ public class TrainingDataLabelApiController {
|
||||
public ApiResponseDto<Page<LabelingListDto>> findLabelingAssignedList(
|
||||
@RequestParam(defaultValue = "0") int page,
|
||||
@RequestParam(defaultValue = "20") int size,
|
||||
@RequestParam(defaultValue = "20260105001") String userId) {
|
||||
@RequestParam(defaultValue = "01022223333") String userId,
|
||||
@RequestParam(defaultValue = "ASSIGNED,SKIP,DONE", required = false) String status) {
|
||||
TrainingDataLabelDto.searchReq searchReq = new TrainingDataLabelDto.searchReq(page, size, "");
|
||||
return ApiResponseDto.ok(trainingDataLabelService.findLabelingAssignedList(searchReq, userId));
|
||||
return ApiResponseDto.ok(
|
||||
trainingDataLabelService.findLabelingAssignedList(searchReq, userId, status));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user