Skip to content

Commit

Permalink
GRAD2-2817
Browse files Browse the repository at this point in the history
TVR Delete Process - Backend Changes Endpoints
  • Loading branch information
arybakov-cgi committed Jul 2, 2024
1 parent 1d02aa0 commit bcc61c7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public ResponseEntity<InputStreamResource> getStudentReportByType(
@ApiResponses(value = {@ApiResponse(responseCode = "200", description = "OK")})
public ResponseEntity<Long> deleteStudentReportByType(
@RequestParam(value = "reportType") String reportType,
@PathVariable UUID uuid) {
@PathVariable UUID studentID) {
logger.debug("getStudentReportByType : ");
return response.GET(commonService.deleteStudentReports(uuid, reportType));
return response.GET(commonService.deleteStudentReports(studentID, reportType));
}

@PostMapping(EducGradReportApiConstants.STUDENT_REPORTS)
Expand Down

0 comments on commit bcc61c7

Please sign in to comment.