Quest 2월 4일(일) 자정까지 해야할 일들

1. API 작성 (url 제외)

2. 각자 front-end template Fork 해주기

다 끝나고는 Notion 에 API 작성 다 됐다고 조장한테 말하기

그 다음에는 각자 설날까지 페이지 디자인 1개 이상 완성

요청 메소드 및 경로

method: PATCH
url: {protocol}{domain}:{port}/user/editIntroduction

요청 데이터

// body
{
  "data": {
    "where": {
      "id": 1 // 바꾸려는 유저의 id
    },
    "data": {
      "introduction": "test introduction" // 바꾸려는 닉네임 값
    }
  }
}

응답

Response ⇒ Request

  1. 여기다 적어주십쇼