ready to test the import

This commit is contained in:
HotSwapp
2025-08-11 10:48:12 -05:00
parent 88501a8891
commit 85ce0f82ec
4 changed files with 3698 additions and 12 deletions

View File

@@ -158,6 +158,15 @@ async def admin_page(request: Request):
)
@app.get("/import", response_class=HTMLResponse)
async def import_page(request: Request):
"""Data import management page (admin only)"""
return templates.TemplateResponse(
"import.html",
{"request": request, "title": "Data Import - " + settings.app_name}
)
@app.get("/health")
async def health_check():
"""Health check endpoint"""