
- 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
9 lines
164 B
Python
9 lines
164 B
Python
from app.crud import user # noqa: F401
|
|
from app.crud.todo import ( # noqa: F401
|
|
create_todo,
|
|
delete_todo,
|
|
get_todo,
|
|
get_todos,
|
|
update_todo,
|
|
)
|