You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
643 B
29 lines
643 B
using System.Linq;
|
|
using Nancy;
|
|
using NzbDrone.Api.Extensions;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Api.Seasons
|
|
{
|
|
public class SeasonModule : NzbDroneApiModule
|
|
{
|
|
private readonly ISeasonService _seasonService;
|
|
|
|
public SeasonModule(ISeasonService seasonService)
|
|
: base("/Season")
|
|
{
|
|
_seasonService = seasonService;
|
|
|
|
Get["/"] = x => GetSeasons();
|
|
}
|
|
|
|
private Response GetSeasons()
|
|
{
|
|
var seriesId = Request.Query.SeriesId;
|
|
|
|
return JsonExtensions.AsResponse(_seasonService.GetSeasonsBySeries(seriesId));
|
|
}
|
|
}
|
|
|
|
|
|
} |