misc/formatting ++ resolve #33 (restructured radio DBs, combined genre into track_file_map, revised query w/ INNER JOIN)

This commit is contained in:
2025-07-01 13:02:53 -04:00
parent c3f753a4f0
commit 1d7589ffbd
8 changed files with 43 additions and 40 deletions

View File

@ -49,7 +49,9 @@ class Misc(FastAPI):
)
app.add_api_route(
"/misc/upload_activity_image", self.upload_activity_image, methods=["POST"],
"/misc/upload_activity_image",
self.upload_activity_image,
methods=["POST"],
dependencies=[Depends(RateLimiter(times=2, seconds=5))],
)
@ -72,7 +74,6 @@ class Misc(FastAPI):
except Exception as e:
logging.debug("Exception: %s", str(e))
return "No."
async def no(self) -> JSONResponse:
"""NaaS"""