mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-25 07:23:16 +00:00
Moved /api/episodes to /api/episode to align with other endpoints
This commit is contained in:
parent
9ee535328f
commit
5a673a33ab
3 changed files with 3 additions and 3 deletions
|
@ -18,7 +18,7 @@ namespace NzbDrone.Api.Episodes
|
|||
private readonly IEpisodeService _episodeService;
|
||||
|
||||
public EpisodeModule(ICommandExecutor commandExecutor, IEpisodeService episodeService)
|
||||
: base(commandExecutor, "episodes")
|
||||
: base(commandExecutor)
|
||||
{
|
||||
_episodeService = episodeService;
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ define(
|
|||
'Series/EpisodeModel'
|
||||
], function (Backbone, EpisodeModel) {
|
||||
return Backbone.Collection.extend({
|
||||
url : window.NzbDrone.ApiRoot + '/episodes',
|
||||
url : window.NzbDrone.ApiRoot + '/episode',
|
||||
model: EpisodeModel,
|
||||
|
||||
state: {
|
||||
|
|
|
@ -11,7 +11,7 @@ define(
|
|||
},
|
||||
|
||||
methodUrls: {
|
||||
'update': window.NzbDrone.ApiRoot + '/episodes'
|
||||
'update': window.NzbDrone.ApiRoot + '/episode'
|
||||
},
|
||||
|
||||
sync: function(method, model, options) {
|
||||
|
|
Loading…
Reference in a new issue