diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2025-05-21 22:43:52 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2025-05-21 22:49:57 -0400 |
| commit | 841fc1355ecef4636ad9f5ad6d081f72eeb868ac (patch) | |
| tree | d94cbcf5b6edbe8b0aa12bfd0604a31e97afe6e3 /src/ui | |
| parent | b3fcd627ae57cd0587363eaf2d5f4635a82bda60 (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/ui')
| -rw-r--r-- | src/ui/assets.rs | 3 | ||||
| -rw-r--r-- | src/ui/routes/login.rs | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/assets.rs b/src/ui/assets.rs index 142cdf9..642679b 100644 --- a/src/ui/assets.rs +++ b/src/ui/assets.rs @@ -54,10 +54,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.to_string()).into_response(), - other => Internal::from(other).into_response(), + Self::Mime(_) => Internal::from(self).into_response(), } } } diff --git a/src/ui/routes/login.rs b/src/ui/routes/login.rs index 81a874c..39d45b9 100644 --- a/src/ui/routes/login.rs +++ b/src/ui/routes/login.rs @@ -4,7 +4,6 @@ pub mod get { ui::assets::{Asset, Assets}, }; - #[allow(clippy::unused_async)] pub async fn handler() -> Result<Asset, Internal> { Assets::index() } |
