Add ability to export account

This commit is contained in:
Ethan O'Brien
2024-05-27 15:31:07 -05:00
parent dae95f5aa3
commit 0b969eab97
4 changed files with 49 additions and 2 deletions

View File

@@ -160,6 +160,7 @@ async fn request(req: HttpRequest, body: String) -> HttpResponse {
"/api/webui/userInfo" => router::webui::user(req),
"/webui/logout" => router::webui::logout(req),
"/api/webui/admin" => router::webui::admin(req),
"/api/webui/export" => router::webui::export(req),
_ => api_req(req, body)
}
}