Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/blame/commit/2229f8f2fa5c58707b6ae1157c2c10660cfde364/NzbDrone.Services/NzbDrone.Services.Service/Controllers/DailySeriesController.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Radarr/NzbDrone.Services/NzbDrone.Services.Service/Controllers/DailySeriesController.cs

43 lines
1.2 KiB

using System.Linq;
using System.Web.Mvc;
using NzbDrone.Services.Service.Providers;
namespace NzbDrone.Services.Service.Controllers
{
public class DailySeriesController : Controller
{
private readonly DailySeriesProvider _dailySeriesProvider;
public DailySeriesController(DailySeriesProvider dailySeriesProvider)
{
_dailySeriesProvider = dailySeriesProvider;
}
[HttpGet]
[OutputCache(CacheProfile = "Cache1Hour")]
public JsonResult All()
{
var all = _dailySeriesProvider.All();
return Json(all, JsonRequestBehavior.AllowGet);
}
[HttpGet]
[OutputCache(CacheProfile = "Cache1Hour")]
public JsonResult AllIds()
{
var all = _dailySeriesProvider.AllSeriesIds();
return Json(all, JsonRequestBehavior.AllowGet);
}
[HttpGet]
[OutputCache(CacheProfile = "Cache1HourVaryBySeriesId")]
public JsonResult Check(int seriesId)
{
var result = _dailySeriesProvider.IsDaily(seriesId);
return Json(result, JsonRequestBehavior.AllowGet);
}
}
}