fix #488 - support user field for completion
- a few other backends use `user` instead of `username` or `login` (e.g. gopass-jsonapi, keepass2csv importer, fpm2 importer) - shorter to type when extracting field separately (e.g. CLI/clipboard) tools
This commit is contained in:
parent
51ad0c2920
commit
3ab334dd00
5 changed files with 15 additions and 2 deletions
|
|
@ -250,6 +250,9 @@ class PasswordDetailTableViewController: UITableViewController, UIGestureRecogni
|
|||
if let username = password.username {
|
||||
section.item.append(Constants.USERNAME_KEYWORD => username)
|
||||
}
|
||||
if let user = password.username {
|
||||
section.item.append(Constants.USER_KEYWORD => user)
|
||||
}
|
||||
if let login = password.login {
|
||||
section.item.append(Constants.LOGIN_KEYWORD => login)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue