Skip to content

Commit

Permalink
fix: 스웨거
Browse files Browse the repository at this point in the history
  • Loading branch information
GayeongKimm committed Jul 25, 2024
1 parent f87f7d9 commit 547323f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ public Response signUp(
}



}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,13 @@ public enum StatusEnum {
MESSAGE_SEND_FAILED(403, "Message send failed"),
TOKEN_NOT_PROVIDED(400, "Token not provided"),

CLOUD_EXCEPTION(500, "Cloud exception");
CLOUD_EXCEPTION(500, "Cloud exception"),

// board
BOARD_NOT_FOUND(404, "Board not found"),

// contest
CONTEST_NOT_FOUND(404, "Contest not found");

private final int statusCode;
private final String message;
Expand Down

0 comments on commit 547323f

Please sign in to comment.