feat(handler): Support for toggling the monitoring status of a specified episode in the Sonarr UI

This commit is contained in:
2024-12-13 16:18:02 -07:00
parent 9269b66aa8
commit 54006c378f
3 changed files with 56 additions and 3 deletions
@@ -378,9 +378,7 @@ mod tests {
#[test]
fn test_toggle_monitoring_key() {
let mut app = App::default();
let mut series_history = StatefulTable::default();
series_history.set_items(vec![SonarrHistoryItem::default()]);
app.data.sonarr_data.series_history = Some(series_history);
app.data.sonarr_data = create_test_sonarr_data();
app.push_navigation_stack(ActiveSonarrBlock::SeriesDetails.into());
app.is_routing = false;