summaryrefslogtreecommitdiff
path: root/src/invite
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-05-21 22:43:52 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-05-21 22:49:57 -0400
commit841fc1355ecef4636ad9f5ad6d081f72eeb868ac (patch)
treed94cbcf5b6edbe8b0aa12bfd0604a31e97afe6e3 /src/invite
parentb3fcd627ae57cd0587363eaf2d5f4635a82bda60 (diff)
Remove a bunch of clippy suppressions.
Notably, one of them was hiding a real (if unreachable) bug, by converting a "the token you have presented is not valid" scenario into an internal server error.
Diffstat (limited to 'src/invite')
-rw-r--r--src/invite/routes/invite/get.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/invite/routes/invite/get.rs b/src/invite/routes/invite/get.rs
index c8b52f1..f862833 100644
--- a/src/invite/routes/invite/get.rs
+++ b/src/invite/routes/invite/get.rs
@@ -30,10 +30,9 @@ pub enum Error {
impl IntoResponse for Error {
fn into_response(self) -> Response {
- #[allow(clippy::match_wildcard_for_single_variants)]
match self {
Self::NotFound(_) => NotFound(self).into_response(),
- other => Internal::from(other).into_response(),
+ Self::Database(_) => Internal::from(self).into_response(),
}
}
}