kurtgodel1 / projectGodel

Setting up WhiteNoise in Django settings for Heroku deployment
https://project-godel.vercel.app
MIT License
0 stars 0 forks source link

Progress Update on User Authentication and Authorization #10

Closed kurtgodel1 closed 10 months ago

kurtgodel1 commented 10 months ago

Progress Update on Implementing User Authentication and Authorization

Completed Analysis:

  1. Reviewed models.py in backend/user_auth:

    • Identified a well-defined custom user model inheriting from Django's AbstractUser.
    • The model includes essential fields like email, username, first_name, and last_name.
  2. Inspected views.py in backend/user_auth:

    • Found a view function get_current_user for checking user's authentication status.
    • Recognized the need for additional views for user registration, login, and logout.

Recommendations:

Next Steps:

Proceeding with the implementation of the recommended changes and enhancements in the user authentication system, focusing on security and functionality.

Update:

Encountered a technical issue while updating models.py. Working to resolve it.