fixed get_previous_events endpoint

This commit is contained in:
Mitchell Marino 2023-04-16 00:07:18 -05:00
parent df532dcf8b
commit 98568e38e2
3 changed files with 40 additions and 47 deletions

View File

@ -17,5 +17,4 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sha256 = "1.1"
jsonwebtoken = "8.3"
tera = "1"
genpdf = "0.2"
lazy_static = "1.4"

View File

@ -135,7 +135,7 @@ pub async fn get_recent_events(
e.created_by
FROM events e
INNER JOIN event_attendees ea
ON ea.event_id = e.id
ON ea.event_id = e.id AND ea.confirmed
WHERE
ea.user_id = $1
;

View File

@ -10,12 +10,6 @@ use axum::{
Json,
};
use axum_auth::AuthBearer;
use genpdf::{
elements::{self, TableLayout},
fonts::{self, FontFamily},
style::{Style, StyledString},
Document,
};
use lazy_static::lazy_static;
use serde_json::json;
use sqlx::{query_as, types::chrono::Local};
@ -98,5 +92,5 @@ pub async fn get_report(
}
};
(StatusCode::OK, Json(json!({ "report": report }))).into_response()
(StatusCode::OK, report).into_response()
}