Skip to content

Commit

Permalink
Merge pull request #175 from nhnacademy-be5-T3Team/hotfix/ci-cd
Browse files Browse the repository at this point in the history
error : 에러 수정
  • Loading branch information
Yujin-nKim authored May 13, 2024
2 parents 65f920d + 079043e commit 44579b5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import com.t3t.bookstoreapi.participant.exception.ParticipantRoleNotFoundException;
import com.t3t.bookstoreapi.payment.exception.PaymentProviderNotFoundException;
import com.t3t.bookstoreapi.payment.exception.UnsupportedPaymentProviderTypeException;
import com.t3t.bookstoreapi.pointdetail.exception.PointDetailNotFoundException;
import com.t3t.bookstoreapi.publisher.exception.PublisherNotFoundException;
import com.t3t.bookstoreapi.shoppingcart.exception.ShoppingCartNotFoundException;
import com.t3t.bookstoreapi.tag.exception.TagNotFoundException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MemberGradePolicyController {
*
* @author hydrationn(박수화)
*/
@GetMapping("/policy")
@GetMapping("/policies")
public ResponseEntity<BaseResponse<List<MemberGradePolicyDto>>> getMemberGradePolicyList() {
List<MemberGradePolicyDto> memberGradePolicyDtoList = memberGradePolicyService.getMemberGradePolicyList();
return ResponseEntity.ok(new BaseResponse<List<MemberGradePolicyDto>>().data(memberGradePolicyDtoList));
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.t3t.bookstoreapi.member.model.entity;

import com.t3t.bookstoreapi.membergradepolicies.model.entity.MemberGradePolicy;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;
Expand Down

0 comments on commit 44579b5

Please sign in to comment.