Skip to content

Commit

Permalink
API Descriptions Fix And Update (#99)
Browse files Browse the repository at this point in the history
* getAllStudentLessonRegistrationsByStatus and getStudentLessonRegistrationIdByStudentId Endpoint Descriptions Has Been Fixed and Update
  • Loading branch information
agitrubard authored May 1, 2022
1 parent 196e140 commit 59ef668
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class StudentLessonRegistrationController {
private final StudentLessonRegistrationService studentLessonRegistrationService;

@GetMapping
@ApiOperation(value = "Get All Student Lesson Registrations By Status")
@ApiOperation(value = "Get All Students Lessons Registrations By Status")
public ResponseEntity<SisBaseApiResponse<List<StudentLessonRegistrationResponse>>> getAllStudentLessonRegistrationsByStatus(
@RequestParam final StudentLessonRegistrationStatus status) {

Expand All @@ -54,7 +54,7 @@ public ResponseEntity<SisBaseApiResponse<StudentLessonRegistrationDetailResponse
}

@GetMapping(StudentLessonRegistrationControllerEndpoint.ID_BY_STUDENT_ID)
@ApiOperation(value = "Get Student Lesson Registrations Detail By Student ID")
@ApiOperation(value = "Get Student Lesson Registration ID By Student ID")
public ResponseEntity<SisBaseApiResponse<String>> getStudentLessonRegistrationIdByStudentId(
@PathVariable @StudentID final Long studentId)
throws SisNotExistException {
Expand Down

0 comments on commit 59ef668

Please sign in to comment.