1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-04-04 10:48:03 +02:00

chore: address clippy lints

This commit is contained in:
Rob Ede 2025-02-23 18:29:25 +00:00
parent 0f35de7da1
commit fc4b656c3b
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 4 additions and 6 deletions

View File

@ -83,8 +83,10 @@ async fn login(request: HttpRequest) -> impl Responder {
} }
#[post("/logout")] #[post("/logout")]
async fn logout(user: Identity) -> impl Responder { async fn logout(user: Option<Identity>) -> impl Responder {
user.logout(); if let Some(user) = user {
user.logout();
}
HttpResponse::Ok() HttpResponse::Ok()
} }
``` ```

View File

@ -205,7 +205,6 @@ impl SessionStore for RedisSessionStore {
let value: Option<String> = self let value: Option<String> = self
.execute_command(redis::cmd("GET").arg(&[&cache_key])) .execute_command(redis::cmd("GET").arg(&[&cache_key]))
.await .await
.map_err(Into::into)
.map_err(LoadError::Other)?; .map_err(LoadError::Other)?;
match value { match value {
@ -240,7 +239,6 @@ impl SessionStore for RedisSessionStore {
), ),
) )
.await .await
.map_err(Into::into)
.map_err(SaveError::Other)?; .map_err(SaveError::Other)?;
Ok(session_key) Ok(session_key)
@ -267,7 +265,6 @@ impl SessionStore for RedisSessionStore {
&format!("{}", ttl.whole_seconds()), &format!("{}", ttl.whole_seconds()),
])) ]))
.await .await
.map_err(Into::into)
.map_err(UpdateError::Other)?; .map_err(UpdateError::Other)?;
match v { match v {
@ -318,7 +315,6 @@ impl SessionStore for RedisSessionStore {
self.execute_command::<()>(redis::cmd("DEL").arg(&[&cache_key])) self.execute_command::<()>(redis::cmd("DEL").arg(&[&cache_key]))
.await .await
.map_err(Into::into)
.map_err(UpdateError::Other)?; .map_err(UpdateError::Other)?;
Ok(()) Ok(())