mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
KeePassX CSV importer was missing TOTP field support. Added logic to parse TOTP fields from the CSV and include them in the vault entries. Added unit tests to verify TOTP import functionality.
4 lines
271 B
TypeScript
4 lines
271 B
TypeScript
export const keepassxTestData = `Title,Username,Password,URL,Notes,TOTP
|
|
Example Entry,testuser,password123,https://example.com,Some notes,
|
|
Another Entry,anotheruser,anotherpassword,https://another.com,Another set of notes,otpauth://totp/Another?secret=ABCD1234EFGH5678`;
|