Skip to content

Commit

Permalink
[CHORE] 컨벤션 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
paragon0107 committed Dec 2, 2024
1 parent 620f463 commit 035c806
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
@RequiredArgsConstructor
public enum SuccessMessage {

UPDATE_NAME("팀 내 이름 변경 성공"),
LEAVE_TEAM("팀 탈퇴 성공"),
KICK_TEAM("팀 퇴출 성공"),
GET_POSITION("직책 불러오기 성공");
UPDATE_NAME("팀 내 이름 변경 성공"),
LEAVE_TEAM("팀 탈퇴 성공"),
KICK_TEAM("팀 퇴출 성공"),
GET_POSITION("직책 불러오기 성공");

private final String message;
private final String message;
}
18 changes: 9 additions & 9 deletions src/main/java/com/tiki/server/team/message/ErrorCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
@AllArgsConstructor
public enum ErrorCode {

/* 400 BAD_REQUEST : 잘못된 요청 */
TOO_HIGH_AUTHORIZATION(BAD_REQUEST, "어드민은 진행할 수 없습니다."),
TOO_SHORT_PERIOD(BAD_REQUEST,"30일이 지나야 이름을 변경할 수 있습니다."),
/* 400 BAD_REQUEST : 잘못된 요청 */
TOO_HIGH_AUTHORIZATION(BAD_REQUEST, "어드민은 진행할 수 없습니다."),
TOO_SHORT_PERIOD(BAD_REQUEST, "30일이 지나야 이름을 변경할 수 있습니다."),

/* 403 FORBIDDEN : 권한 없음 */
INVALID_AUTHORIZATION_DELETE(FORBIDDEN, "권한이 없습니다."),
/* 403 FORBIDDEN : 권한 없음 */
INVALID_AUTHORIZATION_DELETE(FORBIDDEN, "권한이 없습니다."),

/* 404 NOT_FOUND : 자원을 찾을 수 없음 */
INVALID_TEAM(NOT_FOUND, "유효하지 않은 단체입니다.");
/* 404 NOT_FOUND : 자원을 찾을 수 없음 */
INVALID_TEAM(NOT_FOUND, "유효하지 않은 단체입니다.");

private final HttpStatus httpStatus;
private final String message;
private final HttpStatus httpStatus;
private final String message;
}

0 comments on commit 035c806

Please sign in to comment.