Skip to content

Commit

Permalink
Fix: 과릿 1.0.4 (#261)
Browse files Browse the repository at this point in the history
* Fix: API Path 오타 수정

* Revert "Fix: API Path 오타 수정"

This reverts commit 33ae369.

* Fix: API Path 오타 수정

* Chore: FCM 관련 파일 .gitignore 추가
  • Loading branch information
dl-00-e8 authored Nov 3, 2023
1 parent 5dd16f0 commit 0eb4886
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,8 @@ out/

application-secret.yml
application-test.yml
docker-compose.yml
docker-compose.yml

### FCM ###
firebase-dev-admin.json
firebase-release-admin.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public ApplicationResponse<Void> registerStudent(@PathVariable(name = "version",
}

@Operation(summary = "학생 내보내기")
@PostMapping({"/lecture/student/emit/{lecture_id}", "/api/v{version}/lecture/stdudent/emit/{lecture_id}"})
@PostMapping({"/lecture/student/emit/{lecture_id}", "/api/v{version}/lecture/student/emit/{lecture_id}"})
public ApplicationResponse<Void> emitStudent(@PathVariable(name = "version", required = false) Long version, @Auth Member member, @PathVariable("lecture_id") Long lectureId, @Valid @RequestBody List<PostStudentIdReq> postStudentIdReqList) {
lectureService.emitStudent(member, lectureId, postStudentIdReqList);
return ApplicationResponse.ok(ErrorCode.SUCCESS);
Expand Down

0 comments on commit 0eb4886

Please sign in to comment.