- Added centralized, self-learning GeoService (ZIP, City, Street) - Implemented Hybrid Address Management (Centralized table + Denormalized fields) - Fixed Gamification logic (PointsLedger field names & filtering) - Added address autocomplete and two-tier (Free/Premium) search API - Synchronized UserStats and PointsLedger schemas
22 lines
811 B
Python
Executable File
22 lines
811 B
Python
Executable File
from fastapi import APIRouter
|
|
from app.api.v1.endpoints import auth, catalog, assets, organizations, documents, services
|
|
|
|
api_router = APIRouter()
|
|
|
|
# Hitelesítés
|
|
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
|
|
|
|
# Szolgáltatások és Vadászat (Ez az új rész!)
|
|
api_router.include_router(services.router, prefix="/services", tags=["Service Hunt & Discovery"])
|
|
|
|
# Katalógus
|
|
api_router.include_router(catalog.router, prefix="/catalog", tags=["Vehicle Catalog"])
|
|
|
|
# Eszközök (Járművek)
|
|
api_router.include_router(assets.router, prefix="/assets", tags=["Assets"])
|
|
|
|
# Szervezetek
|
|
api_router.include_router(organizations.router, prefix="/organizations", tags=["Organizations"])
|
|
|
|
# Dokumentumok
|
|
api_router.include_router(documents.router, prefix="/documents", tags=["Documents"]) |