chore: conform linting
parent
c8ef995bc0
commit
fa24625a1f
|
@ -50,19 +50,14 @@ pub async fn available(ctx: Context<'_>, date: HumanNaiveDate) -> Result<(), Err
|
|||
let client = &ctx.data().client;
|
||||
let date: NaiveDate = date.into();
|
||||
|
||||
let mut resources = client
|
||||
.available(STERRE_BIB_ID, date, 1)
|
||||
.await?;
|
||||
let mut resources = client.available(STERRE_BIB_ID, date, 1).await?;
|
||||
// Cloning here isn't super efficient, but this list only consists of a handful of elements so
|
||||
// it's fine
|
||||
resources.sort_by_key(|k| k.resource_name.clone());
|
||||
|
||||
ctx.send(|f| {
|
||||
f.embed(|e| {
|
||||
e.description(format!(
|
||||
"Available booking dates for {}.",
|
||||
date
|
||||
))
|
||||
e.description(format!("Available booking dates for {}.", date))
|
||||
.fields(
|
||||
resources
|
||||
.into_iter()
|
||||
|
@ -110,9 +105,7 @@ pub async fn book(
|
|||
let user = user.unwrap();
|
||||
|
||||
let client = &ctx.data().client;
|
||||
let resources = client
|
||||
.available(STERRE_BIB_ID, date, 1)
|
||||
.await?;
|
||||
let resources = client.available(STERRE_BIB_ID, date, 1).await?;
|
||||
let chosen_resource = resources
|
||||
.iter()
|
||||
.filter(|r| capacity.is_none() || capacity.unwrap() <= r.capacity)
|
||||
|
|
Loading…
Reference in New Issue