Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Refactor/SWM-241] 닉네임 중복 에러 status 452 -> 409로 변경 #87

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public enum ErrorCode {
// user
USER_NOT_FOUND(404, "U001", "해당 유저가 존재하지 않습니다."),
INVALID_USER_ACCESS(403, "U002", "해당 유저에 권한이 없습니다."),
ALREADY_EXISTS_USER_NICKNAME(452, "U003", "이미 존재하는 닉네임입니다."),
ALREADY_EXISTS_USER_NICKNAME(409, "U003", "이미 존재하는 닉네임입니다."),

// posting
POSING_NOT_FOUND(404, "P001", "해당 포스팅글이 존재하지 않습니다."),
Expand Down
Loading