Django-React-Blog
Django-React-Blog copied to clipboard
Add feature to filter own posts.
It would be nice to filter own posts or to sort the posts as per some criteria.
Sure!! will do that
Wrote a custom APIView
in Backend/post/views.py
called AuthorPostView
that returns all the posts made by a user by querying author__username
and linked it to url with regex - r'^author/(?P<username>[-\w]+)/$'
.
Frontend to be completed. Pull requested - #24