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/routes | |
| 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/routes')
| -rw-r--r-- | src/ui/routes/login.rs | 1 |
1 files changed, 0 insertions, 1 deletions
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() } |
