···2222/// Find all occurrences/applications associated with a specific user
2323/// returns them as formatted JSON data
2424pub fn handle_request(
2525- request request: wisp.Request,
2525+ request req: wisp.Request,
2626 ctx ctx: Context,
2727 id user_id: String,
2828) -> wisp.Response {
2929- use <- wisp.require_method(request, http.Get)
2929+ use <- wisp.require_method(req, http.Get)
30303131 case query_occurrences(ctx, user_id) {
3232 Ok(resp) -> wisp.json_response(resp, 200)