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

[BE] 피드백 페이지를 이동에 필요한 API를 구현한다. #390

Open
1 task
nailseong opened this issue Aug 22, 2022 · 0 comments
Open
1 task
Labels
Levellog 🌟 기능 새로운 기능 추가 👩🏻‍💻 백엔드 🥷🏻 전지훈련 레벨 인터뷰 4전까지 필수 이슈 처리

Comments

@nailseong
Copy link
Collaborator

목적

  • 아래와 같이 피드백 목록 조회 화면에서 다른 참가자의 피드백 목록 조회 화면으로 편하게 이동하기 위해서
    image

작업 상세 내용

  • 레벨로그 id 목록 조회 API 구현

참고사항

HTTP Request

GET /api/teams/1/levellogs HTTP/1.1
Host: api.levellog.app

HTTP Response

HTTP/1.1 200 OK
Vary: Origin
Vary: Access-Control-Request-Method
Vary: Access-Control-Request-Headers
Content-Type: application/json
Content-Length: 151

{
  "participants" : [ {
    "participant" : {
      "id" : 1,
      "nickname" : "페퍼",
      "profileUrl" : "페퍼.com"
    }
    "levellogId" : null
  }, {
    "participant" : {
      "id" : 2,
      "nickname" : "이브",
      "profileUrl" : "이브.com"
    }
    "levellogId" : 3
  }, {
    "participant" : {
      "id" : 3,
      "nickname" : "",
      "profileUrl" : "릭.com"
    }
    "levellogId" : 4
  } ]
}
@nailseong nailseong added 🌟 기능 새로운 기능 추가 👩🏻‍💻 백엔드 Levellog 🥷🏻 전지훈련 레벨 인터뷰 4전까지 필수 이슈 처리 labels Aug 22, 2022
@nailseong nailseong changed the title [BE] 피드백 페이지를 이동하기 위한 API를 구현한다. [BE] 피드백 페이지를 이동에 필요한 API를 구현한다. Aug 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Levellog 🌟 기능 새로운 기능 추가 👩🏻‍💻 백엔드 🥷🏻 전지훈련 레벨 인터뷰 4전까지 필수 이슈 처리
Projects
None yet
Development

No branches or pull requests

1 participant