Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

회비 정보 조회 시 회비 요청자 정보가 잘못 들어가는 문제 #457

Closed
limehee opened this issue Aug 12, 2024 · 0 comments · Fixed by #458
Closed

회비 정보 조회 시 회비 요청자 정보가 잘못 들어가는 문제 #457

limehee opened this issue Aug 12, 2024 · 0 comments · Fixed by #458
Assignees
Labels
🐞 Bug 버그 제보 및 수정

Comments

@limehee
Copy link
Collaborator

limehee commented Aug 12, 2024

버그 설명

회비 정보 조회 시 요청자의 정보(이름)가 로그인한 사용자의 정보로 들어가는 문제가 발생합니다.

예상 결과

{
    "success": true,
    "data": {
        "currentPage": 0,
        "hasPrevious": false,
        "hasNext": false,
        "totalPages": 1,
        "totalItems": 7,
        "take": 7,
        "items": [
            {
                "id": 7,
                "memberId": "2019_____",
                "memberName": "김__",
                "category": "도서",
                "account": "__ / ___________",
                "amount": 29700,
                "content": "타입스크립트 고급 이론 공부",
                "imageUrl": "/resources/files/membership-fees/______",
                "status": "APPROVED",
                "createdAt": "2024-08-11T22:03:47.280362"
            },
            ...
        ]
    }
}

실제 결과

{
    "success": true,
    "data": {
        "currentPage": 0,
        "hasPrevious": false,
        "hasNext": false,
        "totalPages": 1,
        "totalItems": 7,
        "take": 7,
        "items": [
            {
                "id": 7,
                "memberId": "2019_____",
                "memberName": "관__",
                "category": "도서",
                "account": "__ / ___________",
                "amount": 29700,
                "content": "타입스크립트 고급 이론 공부",
                "imageUrl": "/resources/files/membership-fees/______",
                "status": "APPROVED",
                "createdAt": "2024-08-11T22:03:47.280362"
            },
            ...
        ]
    }
}

시뮬레이션

  1. 사용자 로그인
  2. 회비 내역 조회
  3. 회비 내역 요청자가 사용자의 정보로 되어있음

환경

Production Server

@limehee limehee added the 🐞 Bug 버그 제보 및 수정 label Aug 12, 2024
@limehee limehee self-assigned this Aug 12, 2024
@limehee limehee changed the title 회비 정보 조회 시 회비 요청자 정보가 잘 회비 정보 조회 시 회비 요청자 정보가 잘못 들어가는 문제 Aug 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🐞 Bug 버그 제보 및 수정
Projects
None yet
1 participant