mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-04-26 09:46:00 +03:00
[PR #5490] [CLOSED] Add passkey support to Vaultwarden #3630
Labels
No labels
SSO
Third party
better for forum
bug
bug
documentation
duplicate
enhancement
future Vault
future Vault
future Vault
good first issue
help wanted
low priority
notes
pull-request
question
troubleshooting
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vaultwarden#3630
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/dani-garcia/vaultwarden/pull/5490
Author: @p4rzl
Created: 1/28/2025
Status: ❌ Closed
Base:
main← Head:add-passkey-support📝 Commits (2)
2bec0ffAdd passkey support to Vaultwardenc1cc952Add support for passkeys in admin and user interfaces📊 Changes
10 files changed (+178 additions, -4 deletions)
View changed files
➕
migrations/mysql/2025-01-09-172300_add_passkey_support/up.sql(+3 -0)➕
migrations/postgresql/2025-01-09-172300_add_passkey_support/up.sql(+3 -0)➕
migrations/sqlite/2025-01-09-172300_add_passkey_support/up.sql(+3 -0)📝
src/api/admin.rs(+63 -0)📝
src/api/core/ciphers.rs(+4 -1)📝
src/api/core/public.rs(+33 -1)📝
src/db/models/cipher.rs(+17 -2)📝
src/static/templates/admin/settings.hbs(+14 -0)📝
src/static/templates/admin/users.hbs(+4 -0)➕
src/static/templates/user/login.hbs(+34 -0)📄 Description
Add support for saving and using passkeys, and importing them via .json.
src/api/core/ciphers.rs
Passkeytype toCipherDatastruct.update_cipher_from_datafunction to handle passkeys.post_ciphers_importfunction to import passkeys.src/db/models/cipher.rs
Passkeytype toCipherstruct.type_data_jsonhandling to include passkeys.Database Migrations
src/api/admin.rs
get_passkeys,get_passkey,create_passkey,update_passkey,delete_passkey.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.