mirror of
https://github.com/Radarr/Radarr
synced 2025-12-08 09:24:35 +01:00
Fixed: Remove TitleSlugRoute
This commit is contained in:
parent
98d987869c
commit
fe591816bb
1 changed files with 0 additions and 24 deletions
|
|
@ -54,7 +54,6 @@ ProfileExistsValidator profileExistsValidator
|
||||||
|
|
||||||
GetResourceAll = AllMovie;
|
GetResourceAll = AllMovie;
|
||||||
GetResourceById = GetMovie;
|
GetResourceById = GetMovie;
|
||||||
Get(TITLE_SLUG_ROUTE, GetByTitleSlug);
|
|
||||||
|
|
||||||
CreateResource = AddMovie;
|
CreateResource = AddMovie;
|
||||||
UpdateResource = UpdateMovie;
|
UpdateResource = UpdateMovie;
|
||||||
|
|
@ -106,29 +105,6 @@ private List<MovieResource> AllMovie()
|
||||||
return moviesResources;
|
return moviesResources;
|
||||||
}
|
}
|
||||||
|
|
||||||
private object GetByTitleSlug(dynamic options)
|
|
||||||
{
|
|
||||||
string slug;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
slug = options.slug;
|
|
||||||
// do stuff with x
|
|
||||||
}
|
|
||||||
catch (RuntimeBinderException)
|
|
||||||
{
|
|
||||||
return new NotFoundResponse();
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
return ResponseWithCode(MapToResource(_moviesService.FindByTitleSlug(slug)), HttpStatusCode.OK);
|
|
||||||
}
|
|
||||||
catch (ModelNotFoundException)
|
|
||||||
{
|
|
||||||
return new NotFoundResponse();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private int AddMovie(MovieResource moviesResource)
|
private int AddMovie(MovieResource moviesResource)
|
||||||
{
|
{
|
||||||
var model = moviesResource.ToModel();
|
var model = moviesResource.ToModel();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue