mirror of
https://github.com/escalante29/WealthySmart.git
synced 2026-05-19 10:28:48 +02:00
Add user settings endpoint and exchange rate fallback APIs
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>
This commit is contained in:
@@ -7,6 +7,7 @@ from app.api.v1.endpoints import (
|
||||
categories,
|
||||
exchange_rate,
|
||||
import_transactions,
|
||||
settings,
|
||||
tokens,
|
||||
transactions,
|
||||
)
|
||||
@@ -20,3 +21,4 @@ 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)
|
||||
|
||||
Reference in New Issue
Block a user