mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-02-04 01:28:48 -05:00
hide already approved (or declined) devices (#5467)
This commit is contained in:
parent
2903a3a13a
commit
ecab7a50ea
1 changed files with 1 additions and 0 deletions
|
@ -150,6 +150,7 @@ impl AuthRequest {
|
|||
auth_requests::table
|
||||
.filter(auth_requests::user_uuid.eq(user_uuid))
|
||||
.filter(auth_requests::request_device_identifier.eq(device_uuid))
|
||||
.filter(auth_requests::approved.is_null())
|
||||
.order_by(auth_requests::creation_date.desc())
|
||||
.first::<AuthRequestDb>(conn).ok().from_db()
|
||||
}}
|
||||
|
|
Loading…
Add table
Reference in a new issue