mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Added Season Monitored editor (linked from Season Count on Series Grid), It would be under AJAX Edit, but it won't play nice with lists.
Editor should support about 40 seasons without scrolling (TvDb doesn't list all seasons for large series) Removed &pp=3 from SabProvider (it will use SAB's configured Post Processing value).
This commit is contained in:
parent
fa2b609ad3
commit
9caacc4809
12 changed files with 308 additions and 31 deletions
15
NzbDrone.Web/Models/SeasonEditModel.cs
Normal file
15
NzbDrone.Web/Models/SeasonEditModel.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
public class SeasonEditModel
|
||||
{
|
||||
public int SeasonId { get; set; }
|
||||
public int SeasonNumber { get; set; }
|
||||
public string SeasonString { get; set; }
|
||||
public bool Monitored { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue