mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -07:00
New: Rename all series added to Series Editor
This commit is contained in:
parent
4ca828db81
commit
e5b6f63e6e
4 changed files with 57 additions and 40 deletions
|
@ -41,10 +41,16 @@ namespace NzbDrone.Web.Controllers
|
|||
|
||||
}
|
||||
|
||||
public JsonResult RenameEpisodes(int seriesId)
|
||||
public JsonResult RenameSeries(int seriesId)
|
||||
{
|
||||
_jobProvider.QueueJob(typeof(RenameSeriesJob), seriesId);
|
||||
return JsonNotificationResult.Queued("Series rename");
|
||||
}
|
||||
|
||||
public JsonResult RenameAllSeries()
|
||||
{
|
||||
_jobProvider.QueueJob(typeof(RenameSeriesJob));
|
||||
return JsonNotificationResult.Queued("Series rename");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue