chore: add download-data tag to available-pairs

This commit is contained in:
Matthias
2026-01-20 06:10:52 +01:00
parent 5e7246d23b
commit e279c0333f
2 changed files with 4 additions and 1 deletions

View File

@@ -92,7 +92,9 @@ def list_hyperoptloss(
}
@router.get("/available_pairs", response_model=AvailablePairs, tags=["candle data"])
@router.get(
"/available_pairs", response_model=AvailablePairs, tags=["candle data", "download-data"]
)
def list_available_pairs(
timeframe: str | None = None,
stake_currency: str | None = None,

View File

@@ -140,6 +140,7 @@ class ApiServer(RPCHandler):
app.include_router(
api_webserver,
prefix="/api/v1",
tags=["webserver"],
dependencies=[Depends(http_basic_or_jwt_token), Depends(is_webserver_mode)],
)
app.include_router(