change DCA Admin to DCA Client

This commit is contained in:
padreug 2025-06-22 09:58:07 +02:00
parent 0d02f243a9
commit 3f9e3d47ed
9 changed files with 11 additions and 11 deletions

View file

@ -1,4 +1,4 @@
# Description: DCA Admin page endpoints.
# Description: DCA Client page endpoints.
from fastapi import APIRouter, Depends, Request
from fastapi.responses import HTMLResponse
@ -13,7 +13,7 @@ def satmachineclient_renderer():
return template_renderer(["satmachineclient/templates"])
# DCA Admin page
# DCA Client page
@satmachineclient_generic_router.get("/", response_class=HTMLResponse)
async def index(req: Request, user: User = Depends(check_user_exists)):
return satmachineclient_renderer().TemplateResponse(