mirror of
https://github.com/escalante29/WealthySmart.git
synced 2026-05-19 14:08:47 +02:00
Backend now stores user settings (dashboard config) in a JSONB column and exposes CRUD via /settings/. Exchange rate service gains multiple fallback providers (ExchangeRate-API, currency-api, FloatRates) so USD/CRC rates stay available when BCCR is down. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
25 lines
657 B
Python
25 lines
657 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import (
|
|
accounts,
|
|
analytics,
|
|
auth,
|
|
categories,
|
|
exchange_rate,
|
|
import_transactions,
|
|
settings,
|
|
tokens,
|
|
transactions,
|
|
)
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
api_router.include_router(auth.router)
|
|
api_router.include_router(accounts.router)
|
|
api_router.include_router(categories.router)
|
|
api_router.include_router(transactions.router)
|
|
api_router.include_router(import_transactions.router)
|
|
api_router.include_router(exchange_rate.router)
|
|
api_router.include_router(tokens.router)
|
|
api_router.include_router(analytics.router)
|
|
api_router.include_router(settings.router)
|