Moved /api/episodes to /api/episode to align with other endpoints

This commit is contained in:
markus101 2014-02-04 20:36:16 -08:00
commit 5a673a33ab
3 changed files with 3 additions and 3 deletions

View file

@ -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;