mirror of
https://github.com/PR0M3TH3AN/SeedPass.git
synced 2025-09-09 07:48:57 +00:00
Add Managed Account filter to List Entries menu
This commit is contained in:
@@ -2476,6 +2476,7 @@ class PasswordManager:
|
|||||||
print(color_text("6. Nostr Key Pair", "menu"))
|
print(color_text("6. Nostr Key Pair", "menu"))
|
||||||
print(color_text("7. PGP", "menu"))
|
print(color_text("7. PGP", "menu"))
|
||||||
print(color_text("8. Key/Value", "menu"))
|
print(color_text("8. Key/Value", "menu"))
|
||||||
|
print(color_text("9. Managed Account", "menu"))
|
||||||
choice = input("Select entry type or press Enter to go back: ").strip()
|
choice = input("Select entry type or press Enter to go back: ").strip()
|
||||||
if choice == "1":
|
if choice == "1":
|
||||||
filter_kind = None
|
filter_kind = None
|
||||||
@@ -2493,6 +2494,8 @@ class PasswordManager:
|
|||||||
filter_kind = EntryType.PGP.value
|
filter_kind = EntryType.PGP.value
|
||||||
elif choice == "8":
|
elif choice == "8":
|
||||||
filter_kind = EntryType.KEY_VALUE.value
|
filter_kind = EntryType.KEY_VALUE.value
|
||||||
|
elif choice == "9":
|
||||||
|
filter_kind = EntryType.MANAGED_ACCOUNT.value
|
||||||
elif not choice:
|
elif not choice:
|
||||||
return
|
return
|
||||||
else:
|
else:
|
||||||
|
Reference in New Issue
Block a user