This commit is contained in:
2026-01-02 18:18:15 +09:00
parent fd5d0976fc
commit 563d7b5768

View File

@@ -45,7 +45,8 @@ public class LabelAllocateApiController {
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
})
@GetMapping("/avail-user")
public ApiResponseDto<List<LabelAllocateDto.UserList>> availUserList(@RequestParam @Schema() String role) {
public ApiResponseDto<List<LabelAllocateDto.UserList>> availUserList(
@RequestParam @Schema() String role) {
return ApiResponseDto.ok(labelAllocateService.availUserList(role));
}