Added full support for managing the blocklist

This commit is contained in:
2024-02-15 16:20:03 -07:00
parent d869647dd8
commit 6cadf70c1e
42 changed files with 2004 additions and 123 deletions
@@ -22,7 +22,7 @@ mod tests {
#[test]
fn test_system_tab_left() {
let mut app = App::default();
app.data.radarr_data.main_tabs.set_index(5);
app.data.radarr_data.main_tabs.set_index(6);
SystemHandler::with(
&DEFAULT_KEYBINDINGS.left.key,
@@ -42,7 +42,7 @@ mod tests {
#[test]
fn test_system_tab_right() {
let mut app = App::default();
app.data.radarr_data.main_tabs.set_index(5);
app.data.radarr_data.main_tabs.set_index(6);
SystemHandler::with(
&DEFAULT_KEYBINDINGS.right.key,