refac: return only last 5 changelog

This commit is contained in:
Timothy J. Baek 2024-03-31 01:10:57 -07:00
parent 15f4153fda
commit e47d6ce1f6
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ async def get_app_config():
@app.get("/api/changelog")
async def get_app_changelog():
return CHANGELOG
return {key: CHANGELOG[key] for idx, key in enumerate(CHANGELOG) if idx < 5}
@app.get("/api/version/updates")