Skip to content

Commit 2aa9a29

Browse files
authored
[Fix] swagger edit (#144)
* Fix : swagger 계좌 관련 API (조회) swagger 수정 - account/{walletId}의 response swagger 수정 * Fix : swagger 계좌 관련 API (조회) swagger 수정 - account/{walletId}의 response swagger 수정
1 parent a81923a commit 2aa9a29

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/org/scoula/domain/account/controller/AccountController.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
import org.scoula.domain.account.dto.response.AccountListResponse;
88
import org.scoula.domain.account.service.AccountService;
9-
import org.scoula.domain.exchange.dto.response.exchangeResponse.ExchangeBankResponse;
109
import org.scoula.global.response.SuccessResponse;
1110
import org.springframework.web.bind.annotation.GetMapping;
1211
import org.springframework.web.bind.annotation.PathVariable;
@@ -33,7 +32,7 @@ public class AccountController {
3332
notes = "전자지갑 아이디를 기준으로 연결된 계좌 리스트를 조회합니다."
3433
)
3534
@ApiResponses({
36-
@ApiResponse(code = 200, message = "OK", response = ExchangeBankResponse.class),
35+
@ApiResponse(code = 200, message = "OK"),
3736
@ApiResponse(code = 400, message = "해당 ID의 wallet이 존재하지 않습니다."),
3837
@ApiResponse(code = 500, message = "서버에서 오류가 발생했습니다.")
3938
})

0 commit comments

Comments
 (0)