Package dev.dokimos.server.controller.v1
Class ReviewQueueController
java.lang.Object
dev.dokimos.server.controller.v1.ReviewQueueController
@RestController
@RequestMapping("/api/v1/review-queue")
public class ReviewQueueController
extends Object
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.data.domain.Page<ReviewQueueItem> list(String projectName, UUID experimentId, UUID runId, org.springframework.data.domain.Pageable pageable) Lists run items still awaiting a human verdict, oldest first.
-
Constructor Details
-
ReviewQueueController
-
-
Method Details
-
list
@GetMapping public org.springframework.data.domain.Page<ReviewQueueItem> list(@RequestParam(required=false) String projectName, @RequestParam(required=false) UUID experimentId, @RequestParam(required=false) UUID runId, @PageableDefault(size=50) org.springframework.data.domain.Pageable pageable) Lists run items still awaiting a human verdict, oldest first. The optional filters narrow the queue to a project, experiment, or run; omitting all three returns the global queue.
-