JagrajAulakh / COMP-4110-microblog

MIT License
0 stars 0 forks source link

[STORY] As a user, I want to be able to like a post, so that I can show my support for the content #52

Closed JagrajAulakh closed 1 year ago

JagrajAulakh commented 1 year ago

Epic: #15

Estimate

Large

Acceptance Criteria

Scenario: Liking a post
    Given that a user is logged in to the app
    When the user navigates to a post
    And clicks the "Like" button
    Then the review's like count should increase by 1
    And the user should be able to see the like count for the post
JagrajAulakh commented 1 year ago

Made the DB changes to support post liking system.

Next will do the front end changes