
- Created User model and schemas - Implemented secure password hashing with bcrypt - Added JWT token-based authentication - Created user registration and login endpoints - Added authentication to todo routes - Updated todos to be associated with users - Created migration script for the user table - Updated documentation with auth information
3 lines
94 B
Python
3 lines
94 B
Python
from app.models.todo import Todo # noqa: F401
|
|
from app.models.user import User # noqa: F401
|