Skip to content

Commit

Permalink
[FIX] 응답 코드 수정 201 -> 200로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Jan 17, 2024
1 parent 784aacf commit 95b3134
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public enum SelectUniversitySuccessType implements SuccessType {
GET_SELECT_UNIVERSITIES_SUCCESS(HttpStatus.OK, "목표 대학 조회에 성공하였습니다."),
GET_SELECT_UNIVERSITY_EXAMS_SUCCESS(HttpStatus.OK, "목표 대학 시험 리스트 조회에 성공하였습니다."),
PATCH_SELECT_UNIVERSITIES_SUCCESS(HttpStatus.CREATED, "목표 대학 수정에 성공하였습니다.");
PATCH_SELECT_UNIVERSITIES_SUCCESS(HttpStatus.OK, "목표 대학 수정에 성공하였습니다.");

private final HttpStatus status;
private final String message;
Expand Down

0 comments on commit 95b3134

Please sign in to comment.