This commit is contained in:
Julien Fastré 2024-10-18 10:16:27 +02:00
parent 2d103e2295
commit 1ad8b56892
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB
2 changed files with 5 additions and 0 deletions

View File

@ -128,6 +128,7 @@ impl GetWorkPackageCollectionClient for Client {
current.links.next_by_offset.clone().unwrap().href
))
.basic_auth("apikey", Some(&self.token))
// .query(&[("filters", r##"[{"startDate":{"operator": "<=", "values": ["2024-06-30"]}, {"endDate":{"operator": ">d", "values": ["2024-06-01"]}]"##)])
.send()
.await?;

View File

@ -8,6 +8,10 @@ use crate::openproject::client::Client;
use crate::openproject::user::UserPartial;
use crate::openproject::work::{WorkPackage, WorkPackageCollectionClient};
pub struct PlanningLoadConfig {
}
enum CellContent {
S(String),
N(f64),