guymoon / hello-waterski

⚛️ 수상스키에 관련된 서비스를 제공합니다.
0 stars 0 forks source link

like button 클릭하면 on/off 해주는 기능. #44

Closed guymoon closed 2 years ago

guymoon commented 2 years ago

11

2. POST /spotLike/like

Request Params

{
 userId: string, //session에서 얻은 userId
 spotId: string, //현재 컴포넌트에서 props로 얻은spotId
}

Response

{ newId : string } //등록된 ID

3. POST /spotLike/unLiked

Request Params

{
    userId: string, //session에서 얻은 userId
    spotId: string //현재 컴포넌트에서 props로 얻은 spotId
}
{ deletedid: string } //삭제된 ID