Move all encryption to a session handler

This commit is contained in:
Ethan O'Brien
2026-07-24 14:20:26 -05:00
parent 2cd11c8467
commit 0b0b50de36
23 changed files with 155 additions and 241 deletions

View File

@@ -14,6 +14,6 @@ async fn reward(req: HttpRequest) -> impl Responder {
}))
}
async fn reward_post(req: HttpRequest, _body: String) -> impl Responder {
async fn reward_post(req: HttpRequest) -> impl Responder {
global::api(&req, Some(array![]))
}