FEAT: Corporate onboarding implemented with Tax ID validation (HU) and isolated NAS storage

This commit is contained in:
2026-02-07 13:42:46 +00:00
parent c59c441a40
commit 7249aa5809
23 changed files with 399 additions and 29 deletions

View File

@@ -1,10 +1,16 @@
from fastapi import APIRouter
from app.api.v1.endpoints import auth, catalog # <--- Hozzáadtuk a catalog-ot
from app.api.v1.endpoints import auth, catalog, assets, organizations
api_router = APIRouter()
# Autentikáció és KYC végpontok
# Felhasználó és Identitás
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
# Jármű Katalógus és Robot kereső végpontok
api_router.include_router(catalog.router, prefix="/catalog", tags=["Vehicle Catalog"])
# Katalógus és Jármű Robotok
api_router.include_router(catalog.router, prefix="/catalog", tags=["Vehicle Catalog"])
# Egyedi Eszközök (Assets)
api_router.include_router(assets.router, prefix="/assets", tags=["Assets"])
# Szervezetek és Onboarding
api_router.include_router(organizations.router, prefix="/organizations", tags=["Organizations"])