Registration View

Learn how to create a user registration view.

We'll cover the following...

This lesson focuses on implementing the registration view.

Create the user registration view

We can now create a view for registering users in our views.py. The view class extends the GenericAPIView in the class-based view with a post method. This view class handles all post requests that will be coming in from the user registration endpoint. It is also in the ...