Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description:
An endpoint to enable users who previously
liked
a blog post to remove thelike
.Related Issue:
[FEAT]: Endpoint To Delete Blog Like #965
Motivation and Context
Readers should be able to remove like from a particular post after adding one, if they posted it in error or just changed their mind.
How Has This Been Tested?
Screenshots:
Delete Blog Like Success
Non Owner Request
Blog Like Not Available
Types of changes
Checklist:
Added Fix:
Enable
/api/v1/blogs/{blog_id}/like
endpoint to automatically remove existingdislike
by thecurrent_user
before creating newlike
, and vice versa with the/api/v1/blogs/{blog_id}/dislike
endpoint.This is important if a user clicks the like button after already clicking the dislike button without first removing the dislike. Otherwise, the database will have unintended records of both like and dislike for the same user on the same blog