Skip to content

Commit

Permalink
Merge pull request #11 from Sopo2023/feat/#1
Browse files Browse the repository at this point in the history
fix: 스웨거
  • Loading branch information
GayeongKimm authored Jul 25, 2024
2 parents 63a8ce5 + 547323f commit 8e9ec75
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 8e9ec75

Please sign in to comment.