Skip to content

Commit

Permalink
๐Ÿš€ [Deploy] - Response DTO ์ˆ˜์ •์‚ฌํ•ญ ๋ฐ˜์˜ (#36)
Browse files Browse the repository at this point in the history
* Feat: customException ๊ตฌํ˜„

* Feat: responseDto ๊ตฌํ˜„

* Feat: ๋‚ด ๊ทผ์ฒ˜ ํ‚ฅ๋ณด๋“œ ์ฃผ์ฐจ์žฅ ์ฐพ๊ธฐ API ๊ตฌํ˜„

* Fix: BoardingRecord ๋„๋ฉ”์ธ ์ˆ˜์ •

* Feat: Spring Security, JWT Cookie, ์†Œ์…œ ๋กœ๊ทธ์ธ ๊ธฐ๋Šฅ ๊ตฌํ˜„

* Feat: Spring Security, JWT Cookie, ์†Œ์…œ ๋กœ๊ทธ์ธ ๊ธฐ๋Šฅ ๊ตฌํ˜„

* Fix: ์ฝ”๋“œ ์—๋Ÿฌ ์ˆ˜์ •

* Refactor: ์•„์ง ์‚ฌ์šฉํ•˜์ง€ ์•Š๋Š” ์ฝ”๋“œ ์‚ญ์ œ

* Feat: oauth2 ์˜์กด์„ฑ ์ถ”๊ฐ€

* Chore: Credentials ์ถ”๊ฐ€

* โœจ [Feature] - ์„œ๋ฒ„ ๋‚ ์งœ ์„ค์ • ๋ฐ ์œ ์ € ๋‹‰๋„ค์ž„ ์„ค์ • (#15)

* Feat: ์Šคํ”„๋ง ์„œ๋ฒ„ ์‹œ๊ฐ„ ํ•œ๊ตญ์œผ๋กœ ์„ค์ •

* Feat: ์‚ฌ์šฉ์ž ๋‹‰๋„ค์ž„ ์ง€์ • ๋กœ์ง ์ถ”๊ฐ€

* Fix: ์ดˆ๊ธฐ ํฌ์ธํŠธ ์„ค์ •

* Fix: nickname ์—๋Ÿฌ ์ˆ˜์ • (#18)

* Fix: BoardingRecord ๋„๋ฉ”์ธ ์ˆ˜์ •

* Feat: ๋””ํŽœ๋˜์‹œ ์ถ”๊ฐ€

* Feat: ErrorCode ์ถ”๊ฐ€

* Feat: Image API ๊ตฌํ˜„

* Feat: WebClientConfig ๊ตฌํ˜„

* Feat: S3ClientConfig ๊ตฌํ˜„

* Feat: BoardingRecord API ๊ตฌํ˜„

* Feat: ์ฃผ์ฐจ์žฅ ์˜ˆ์ธก ๊ฒฐ๊ณผ ๊ด€๋ จ ๊ธฐ๋Šฅ ์ถ”๊ฐ€

* Feat: ํƒ‘์Šน ๊ธฐ๋ก ์ €์žฅ API ๊ตฌํ˜„

* Fix: ๋””๋ ‰ํ† ๋ฆฌ ๊ฒฝ๋กœ ์ˆ˜์ •

* Feat: ์ฝ”๋“œ ๋ฆฌํŒฉํ„ฐ๋ง ์ง„ํ–‰

* Chore: Credentials ์ˆ˜์ • (#29)

* !HOTFIX: ์„œ๋ธŒ ๋ชจ๋“ˆ ์ปจํ”Œ๋ฆญํŠธ ํ•ด๊ฒฐ

* โœจ [Feature] - Reissue ํ† ํฐ ๊ธฐ๋Šฅ ์ถ”๊ฐ€ (#31)

* Chore: Credentials ์ˆ˜์ •

* Feat: Reissue ํ† ํฐ ๊ธฐ๋Šฅ ๊ตฌํ˜„

* Chore: Credentials ์ถ”๊ฐ€

* Fix: JsonProperty ์ถ”๊ฐ€

* Fix: ResponseDto ํ•„๋“œ๋ณ€์ˆ˜ ์ด๋ฆ„ ์ˆ˜์ • (#35)

---------

Co-authored-by: JeongHeumChoi <[email protected]>
Co-authored-by: JeongHeumChoi <[email protected]>
  • Loading branch information
3 people committed May 9, 2024
1 parent 0a736ba commit 53c6146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ice/spot/dto/global/ResponseDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public record ResponseDto<T> (
@JsonIgnore HttpStatus httpStatus,
boolean success,
@Nullable T data,
@Nullable ExceptionDto exceptionDto
@Nullable ExceptionDto error
) {
public static <T> ResponseDto<T> ok(T data){
return new ResponseDto<>(
Expand Down

0 comments on commit 53c6146

Please sign in to comment.