feat: qna 조회 수정
This commit is contained in:
parent
5c63fb2362
commit
479649a987
@ -63,10 +63,7 @@ public class ReportController {
|
|||||||
return new ResponseEntity<>(detailReport, HttpStatus.OK);
|
return new ResponseEntity<>(detailReport, HttpStatus.OK);
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
|
|
||||||
=======
|
|
||||||
>>>>>>> 935331e7e93d9c25ec6f32ba6155ed19b5fd60f9
|
|
||||||
@GetMapping("/teacher/reportSet/{lectureId}")
|
@GetMapping("/teacher/reportSet/{lectureId}")
|
||||||
public ResponseEntity<List<ReportSetResponse>> searchReportSets(@PathVariable("lectureId") long lectureId) {
|
public ResponseEntity<List<ReportSetResponse>> searchReportSets(@PathVariable("lectureId") long lectureId) {
|
||||||
List<ReportSetResponse> reportSetResponses = reportService.findReportSets(lectureId);
|
List<ReportSetResponse> reportSetResponses = reportService.findReportSets(lectureId);
|
||||||
@ -88,7 +85,7 @@ public class ReportController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@DeleteMapping("/teacher/report/{reportSetId}")
|
@DeleteMapping("/teacher/report/{reportSetId}")
|
||||||
public ResponseEntity<?> deleteReportSet(@PathVariable("reportSetId") UUID reportSetId, HttpServletRequest request){
|
public ResponseEntity<?> deleteReportSet(@PathVariable("reportSetId") UUID reportSetId, HttpServletRequest request) {
|
||||||
String token = request.getHeader("Authorization");
|
String token = request.getHeader("Authorization");
|
||||||
long userId = Long.parseLong(jwtUtil.getUserId(token));
|
long userId = Long.parseLong(jwtUtil.getUserId(token));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user