fix: add explicit parameter name to ToolReportController
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 12s
Some checks failed
Deploy to OCIWP / deploy (push) Failing after 12s
This commit is contained in:
@@ -52,7 +52,7 @@ public class ToolReportController {
|
||||
}
|
||||
|
||||
@GetMapping("/report-tools")
|
||||
public List<ToolSummary> tools(@RequestParam(required = false) String sourceType) {
|
||||
public List<ToolSummary> tools(@RequestParam(value = "sourceType", required = false) String sourceType) {
|
||||
return service.findTools(sourceType);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user