Writing Post Viewsets
Learn to create viewset for the Post model, and create a sample post to test the endpoint.
We'll cover the following...
For the following endpoint, we’ll only be allowing the POST and GET methods. This will help us have the basic features working first.
Requirements
The code should follow these rules:
Only authenticated users can create posts.
Only authenticated users can read posts.
Only
GETandPOSTmethods are allowed.
Inside the post directory, create a file called viewsets.py. Into the file, add the following content:
In the preceding code, we defined three interesting methods:
The
get_querysetmethod returns all the posts. We don’t actually have particular requirements for fetching posts, so we can return all posts in the database.The
get_objectmethod returns a post object usingpublic_idthat will be present in the URL. We retrieve this parameter ...