DRF SimpleJWT remove password and add date field
问题 I created a custom user model extending from AbstractBaseUser where the only data I'm getting from the user is a userID, user (the username field) and date (required and in the format dd-mm-yyyy ) and the creation of the user works fine as you can see from the DB in the next image Used password = None and last_login = None to refer i didn't want password and last_login tables. Then, created a view where only authenticated users can access. To handle the authentication, used simpleJWT. In urls