chore: rename app to xsk education manager

This commit is contained in:
Codex
2026-06-14 21:14:10 +08:00
parent 6417d2baa9
commit b2913dbd8a
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -49,7 +49,7 @@ ACCOUNTS_SESSION_COOKIE = "xsk_accounts_session"
ADMIN_SESSION_COOKIE = "xsk_admin_session"
SESSION_MAX_AGE = 60 * 60 * 24 * 30
app = FastAPI(title="新时空课程记录查询", version="1.0.0")
app = FastAPI(title="新时空教务管家", version="1.0.0")
security = HTTPBasic(auto_error=False)
write_lock = threading.Lock()
@@ -477,7 +477,7 @@ def login_page(
return RedirectResponse(url=next_path, status_code=status.HTTP_303_SEE_OTHER)
return HTMLResponse(
render_login_page(
title="新时空课程记录查询",
title="新时空教务管家",
action="/login",
next_path=next_path,
has_error=has_error,