summaryrefslogtreecommitdiff
path: root/src/user
diff options
context:
space:
mode:
Diffstat (limited to 'src/user')
-rw-r--r--src/user/routes/logout/post.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/user/routes/logout/post.rs b/src/user/routes/logout/post.rs
index bb09b9f..0ac663e 100644
--- a/src/user/routes/logout/post.rs
+++ b/src/user/routes/logout/post.rs
@@ -38,10 +38,13 @@ pub struct Error(#[from] pub app::ValidateError);
impl IntoResponse for Error {
fn into_response(self) -> Response {
let Self(error) = self;
- #[allow(clippy::match_wildcard_for_single_variants)]
match error {
- app::ValidateError::InvalidToken => Unauthorized.into_response(),
- other => Internal::from(other).into_response(),
+ app::ValidateError::InvalidToken | app::ValidateError::LoginDeleted => {
+ Unauthorized.into_response()
+ }
+ app::ValidateError::Name(_) | app::ValidateError::Database(_) => {
+ Internal::from(error).into_response()
+ }
}
}
}