
Replaced usage of "ContactPerson" with "Contact" for consistency across the codebase. Updated related component props, state variables, API calls, and database queries to align with the new model. Also enhanced backend functionality with stricter validations and added support for handling active pgroups in contact management.
18 lines
485 B
Python
18 lines
485 B
Python
from .address import address_router
|
|
from .contact import contact_router
|
|
from .proposal import router as proposal_router
|
|
from .dewar import router as dewar_router
|
|
from .shipment import router as shipment_router
|
|
from .auth import router as auth_router
|
|
from .protected_router import protected_router as protected_router
|
|
|
|
__all__ = [
|
|
"address_router",
|
|
"contact_router",
|
|
"proposal_router",
|
|
"dewar_router",
|
|
"shipment_router",
|
|
"auth_router",
|
|
"protected_router",
|
|
]
|