1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-04-03 18:34:13 +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")]
async fn logout(user: Identity) -> impl Responder {
user.logout();
async fn logout(user: Option<Identity>) -> impl Responder {
if let Some(user) = user {
user.logout();
}
HttpResponse::Ok()
}
```

View File

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