feat(notify): wire option 84 into main.py menu

This commit is contained in:
Justin Bollinger
2026-04-22 18:11:35 -04:00
parent ce625a7874
commit 60b105fed3

View File

@@ -4169,6 +4169,7 @@ def get_main_menu_items():
"83",
f"Toggle Pushover Notifications [{'ON' if _notify.get_settings().enabled else 'OFF'}]",
),
("84", "Send Test Pushover Notification"),
("90", "Download rules from Hashmob.net"),
("91", "Analyze Hashcat Rules"),
("92", "Download wordlists from Hashmob.net"),
@@ -4213,6 +4214,7 @@ def get_main_menu_options():
"80": wordlist_tools_submenu,
"81": rule_tools_submenu,
"83": toggle_notifications,
"84": test_pushover_notification,
"90": lambda: download_hashmob_rules(rules_dir=rulesDirectory),
"91": analyze_rules,
"92": download_hashmob_wordlists,