Skip to content

Commit

Permalink
AuthenticationService 수정에 따른 OrderController 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
daadaadaah committed Aug 22, 2023
1 parent 17e9c12 commit a302d60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public ResponseDto placeOrderInAdvance(
@RequestHeader(value = "Authorization") String authorization,
@Valid @RequestBody OrderFormDto orderFormDto
) {
AuthUserInfo authUserInfo = authenticationService.parseAuthorization(authorization);
AuthUserInfo authUserInfo = authenticationService.getAuthUserInfo(authorization);

OrderForm orderForm = OrderForm.of(orderFormDto, authUserInfo.getUserId());

Expand Down

0 comments on commit a302d60

Please sign in to comment.