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

fix : userNickname, rating정보 같이 안넘어오던 오류 수정 #10

Merged
merged 1 commit into from
Dec 4, 2024

Conversation

minseok1015
Copy link
Collaborator

기존 Response (nickname, rating이 빠져있음)

{
  "messageType": 3,
  "status": "success",
  "message": "성공",
  "data": {
    "rooms": [
      {
        "roomId": 1,
        "roomName": "건대생들 고고",
        "quizCount": 40,
        "currentPlayers": 8,
        "maxPlayers": 5
      },
    ]
  }
}

수정된 Response

{
  "messageType": 3,
  "status": "success",
  "message": "성공",
  "data": {
    "nickname": "이수",
    "rating": 2813,
    "rooms": [
      {
        "roomId": 1,
        "roomName": "건대생들 고고",
        "quizCount": 40,
        "currentPlayers": 8,
        "maxPlayers": 5
      },
    ]
  }
}

Copy link
Contributor

@ckkim817 ckkim817 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다 ~! 👍🏻

@minseok1015 minseok1015 merged commit c8280c9 into main Dec 4, 2024
@ckkim817 ckkim817 deleted the fix/#9 branch December 5, 2024 05:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants