Momentum logo
Team 10 Classroom

🐻 API Progress Check-In 🐻

Posted on Dec 16th, 2021

πŸ—“οΈ Today’s Topics

  • How are the projects coming along? πŸ‘€

🎯 Project

Keep on going. πŸ’ͺ πŸš€

We will use class time today to get you past any blockers you may be experiencing and to talk through next steps.

By now you should have provided your front end with a way to log in and log out, and endpoints to see data. By tomorrow you should have the ability to POST data.

πŸ“– Read | πŸ“Ί Watch | 🎧 Listen

On Monday we’ll be covering full-text search in your API, but if you have time you can check these resources out in advance.

πŸ”– Resources

Make sure you are sharing this information with your front end as well. You can include it in a project README.

Creating a properly hashed password

In order to properly save a hashed password when you create a new user in the Django Admin, make sure you are using UserAdmin in admin.py:

from django.contrib import admin
from django.contrib.auth.admin import UserAdmin

...

admin.site.register(User, UserAdmin)

πŸ¦‰ Code

Back to home