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

[jinyoungchoi95] Article 좋아요기능 구현 #70

Closed
2 tasks done
jinyoungchoi95 opened this issue Oct 29, 2021 · 0 comments
Closed
2 tasks done

[jinyoungchoi95] Article 좋아요기능 구현 #70

jinyoungchoi95 opened this issue Oct 29, 2021 · 0 comments
Assignees
Labels
feature ori 오리의 이슈

Comments

@jinyoungchoi95
Copy link
Member

jinyoungchoi95 commented Oct 29, 2021

[AS-IS]

  • Article Favorite 기능 미구현
  • table 연관관계 매핑 미구현
  • 좋아요 , 좋아요 취소 미구현
  • 좋아요 수 기능 미구현

[TO-BE]

  • POST /api/articles/{slug}/favorite

Autentication

Response:

{
  "article": {
    "slug": "how-to-train-your-dragon",
    "title": "How to train your dragon",
    "description": "Ever wonder how?",
    "body": "It takes a Jacobian",
    "tagList": ["dragons", "training"],
    "createdAt": "2016-02-18T03:22:56.637Z",
    "updatedAt": "2016-02-18T03:48:35.824Z",
    "favorited": false,
    "favoritesCount": 0,
    "author": {
      "username": "jake",
      "bio": "I work at statefarm",
      "image": "https://i.stack.imgur.com/xHWG8.jpg",
      "following": false
    }
  }
}
  • DELETE /api/articles/{slug}/favorite

Autentication

Response:

{
  "article": {
    "slug": "how-to-train-your-dragon",
    "title": "How to train your dragon",
    "description": "Ever wonder how?",
    "body": "It takes a Jacobian",
    "tagList": ["dragons", "training"],
    "createdAt": "2016-02-18T03:22:56.637Z",
    "updatedAt": "2016-02-18T03:48:35.824Z",
    "favorited": false,
    "favoritesCount": 0,
    "author": {
      "username": "jake",
      "bio": "I work at statefarm",
      "image": "https://i.stack.imgur.com/xHWG8.jpg",
      "following": false
    }
  }
}
@jinyoungchoi95 jinyoungchoi95 added feature ori 오리의 이슈 labels Oct 29, 2021
@jinyoungchoi95 jinyoungchoi95 self-assigned this Oct 29, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature ori 오리의 이슈
Projects
None yet
Development

No branches or pull requests

1 participant