Add new webui endpoint

This commit is contained in:
Ethan O'Brien
2026-01-30 22:20:23 -06:00
parent 6688655370
commit da49d06209
3 changed files with 4667 additions and 3 deletions

View File

@@ -216,6 +216,7 @@ pub async fn request(req: HttpRequest, body: String) -> HttpResponse {
"/webui/logout" => webui::logout(req),
"/api/webui/export" => webui::export(req),
"/api/webui/serverInfo" => webui::server_info(req),
"/api/webui/listCards" => webui::get_card_info(req),
_ => api_req(req, body).await
}
}