
- 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
4 lines
218 B
Python
4 lines
218 B
Python
from app.schemas.todo import Todo, TodoCreate, TodoUpdate # noqa: F401
|
|
from app.schemas.token import Token, TokenPayload # noqa: F401
|
|
from app.schemas.user import User, UserCreate, UserInDB, UserUpdate # noqa: F401
|