custom extractors rejection
Some checks failed
Rust / Test (push) Has been cancelled
Rust / Rustfmt (push) Has been cancelled
Rust / Clippy (push) Has been cancelled
Rust / Code coverage (push) Has been cancelled

This commit is contained in:
Alphonse Paix
2025-09-27 02:28:04 +02:00
parent f9ae3f42a6
commit f43e143bf6
6 changed files with 68 additions and 13 deletions

View File

@@ -1,7 +1,9 @@
use crate::{
authentication::AuthenticatedUser,
idempotency::{IdempotencyKey, save_response, try_processing},
routes::{AdminError, AppError, EmailType, enqueue_delivery_tasks, insert_newsletter_issue},
routes::{
AdminError, AppError, EmailType, Path, enqueue_delivery_tasks, insert_newsletter_issue,
},
startup::AppState,
templates::{MessageTemplate, NewPostEmailTemplate},
};
@@ -9,7 +11,7 @@ use anyhow::Context;
use askama::Template;
use axum::{
Extension, Form,
extract::{Path, State},
extract::State,
response::{Html, IntoResponse, Response},
};
use chrono::Utc;