feat: implement pivot-currency model, rbac smart tokens & fix circular imports
This commit is contained in:
0
backend/app/db/__pycache__/__init__.cpython-312.pyc
Executable file → Normal file
0
backend/app/db/__pycache__/__init__.cpython-312.pyc
Executable file → Normal file
Binary file not shown.
0
backend/app/db/__pycache__/session.cpython-312.pyc
Executable file → Normal file
0
backend/app/db/__pycache__/session.cpython-312.pyc
Executable file → Normal file
@@ -1,6 +1,20 @@
|
||||
# /opt/docker/dev/service_finder/backend/app/db/base.py
|
||||
from app.db.base_class import Base # noqa
|
||||
|
||||
# Közvetlen importok a fájlokból (Circular Import elkerülése)
|
||||
from app.models.address import Address, GeoPostalCode, GeoStreet, GeoStreetType # noqa
|
||||
from app.models.identity import User, Person, VerificationToken, Wallet # noqa
|
||||
from app.models.organization import Organization, OrganizationMember # noqa
|
||||
from app.models.asset import Asset, AssetCatalog, AssetCost, AssetEvent # noqa
|
||||
from app.models.gamification import UserStats, PointsLedger # noqa
|
||||
from app.models.asset import ( # noqa
|
||||
Asset, AssetCatalog, AssetCost, AssetEvent,
|
||||
AssetFinancials, AssetTelemetry, AssetReview, ExchangeRate
|
||||
)
|
||||
from app.models.gamification import ( # noqa
|
||||
PointRule, LevelConfig, UserStats, Badge, UserBadge, Rating, PointsLedger
|
||||
)
|
||||
from app.models.system_config import SystemParameter # noqa
|
||||
from app.models.history import AuditLog, VehicleOwnership # noqa
|
||||
from app.models.document import Document # noqa
|
||||
from app.models.core_logic import ( # noqa
|
||||
SubscriptionTier, OrganizationSubscription, CreditTransaction, ServiceSpecialty
|
||||
)
|
||||
Reference in New Issue
Block a user