push
This commit is contained in:
@ -2,17 +2,23 @@ use chrono::NaiveDate;
|
||||
use serde::Serialize;
|
||||
use sqlx::SqlitePool;
|
||||
|
||||
use self::planned_event::PlannedEvent;
|
||||
use self::{
|
||||
planned_event::{PlannedEvent, PlannedEventWithUser},
|
||||
trip::{Trip, TripWithUser},
|
||||
};
|
||||
|
||||
pub mod planned_event;
|
||||
pub mod trip;
|
||||
pub mod tripdetails;
|
||||
pub mod user;
|
||||
pub mod usertrip;
|
||||
//pub mod users;
|
||||
|
||||
#[derive(Serialize)]
|
||||
pub struct Day {
|
||||
day: NaiveDate,
|
||||
planned_events: Vec<PlannedEvent>,
|
||||
planned_events: Vec<PlannedEventWithUser>,
|
||||
trips: Vec<TripWithUser>,
|
||||
}
|
||||
|
||||
impl Day {
|
||||
@ -20,6 +26,7 @@ impl Day {
|
||||
Self {
|
||||
day,
|
||||
planned_events: PlannedEvent::get_for_day(db, day).await,
|
||||
trips: Trip::get_for_day(db, day).await,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user