aboutsummaryrefslogtreecommitdiffstats
path: root/askama_mendes
diff options
context:
space:
mode:
authorLibravatar René Kijewski <kijewski@library.vetmed.fu-berlin.de>2022-01-06 14:43:01 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2022-09-19 12:34:44 +0200
commitea8be4421d73a9ef056c05889d87062dfb5a69c8 (patch)
tree571c1dc918cbc5dfdd916a6c775356e770e676b0 /askama_mendes
parent7edb3d4685aff00880906873db4eb9f649a077d9 (diff)
downloadaskama-ea8be4421d73a9ef056c05889d87062dfb5a69c8.tar.gz
askama-ea8be4421d73a9ef056c05889d87062dfb5a69c8.tar.bz2
askama-ea8be4421d73a9ef056c05889d87062dfb5a69c8.zip
Remove ext argument in integrations
Diffstat (limited to 'askama_mendes')
-rw-r--r--askama_mendes/src/lib.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/askama_mendes/src/lib.rs b/askama_mendes/src/lib.rs
index 3bf3648..5eb3a3c 100644
--- a/askama_mendes/src/lib.rs
+++ b/askama_mendes/src/lib.rs
@@ -9,12 +9,7 @@ use mendes::http::Response;
pub use askama::*;
-pub fn into_response<A, T>(
- app: &A,
- req: &Parts,
- t: &T,
- _ext: Option<&str>,
-) -> Response<A::ResponseBody>
+pub fn into_response<A, T>(app: &A, req: &Parts, t: &T) -> Response<A::ResponseBody>
where
A: Application,
T: Template,