Creating Python APIs - The Django REST framework. Building a Reddit clone - Upvoting Posts.[6/n]
Now that we've added the functionality to create posts via the API, we will now add the ability to upvote the posts.
So, if we're going to have an API to create a vote, first we need to have a serializer for that vote. Just like we created for the P...