
This commit includes: - User registration and authentication API with JWT - Password reset functionality - Role-based access control system - Database models and migrations with SQLAlchemy and Alembic - API documentation in README generated with BackendIM... (backend.im)
7 lines
316 B
Python
7 lines
316 B
Python
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.user import User # noqa
|
|
from app.models.role import Role # noqa
|
|
from app.models.user_role import UserRole # noqa
|
|
from app.models.password_reset import PasswordReset # noqa |