update
All checks were successful
ci/woodpecker/push/test Pipeline was successful

This commit is contained in:
JMARyA 2024-12-29 20:03:04 +01:00
parent 04852f2fbc
commit 3837302161
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
2 changed files with 7 additions and 1 deletions

View file

@ -25,3 +25,9 @@ impl<'r> FromRequest<'r> for RequestContext {
})
}
}
impl Default for RequestContext {
fn default() -> Self {
Self { is_htmx: false }
}
}