mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
Cleaned as much of notifications as I could find.
This commit is contained in:
parent
121f3258af
commit
3cb61e4c34
16 changed files with 95 additions and 213 deletions
|
@ -112,19 +112,17 @@ namespace NzbDrone.Web.Controllers
|
|||
}
|
||||
|
||||
[HttpPost]
|
||||
public JsonResult SaveSeasonIgnore(int seriesId, int seasonNumber, bool ignored)
|
||||
public EmptyResult SaveSeasonIgnore(int seriesId, int seasonNumber, bool ignored)
|
||||
{
|
||||
_episodeProvider.SetSeasonIgnore(seriesId, seasonNumber, ignored);
|
||||
|
||||
return new JsonResult { Data = "ok" };
|
||||
return new EmptyResult();
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public JsonResult SaveEpisodeIgnore(int episodeId, bool ignored)
|
||||
public EmptyResult SaveEpisodeIgnore(int episodeId, bool ignored)
|
||||
{
|
||||
_episodeProvider.SetEpisodeIgnore(episodeId, ignored);
|
||||
|
||||
return new JsonResult { Data = "ok" };
|
||||
return new EmptyResult();
|
||||
}
|
||||
|
||||
public ActionResult Details(int seriesId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue