mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-12 23:13:44 +00:00
Fixed: Cleanup ReleaseProfileModule Compiler Warnings
This commit is contained in:
parent
8c9bd6b0d9
commit
9b58611707
1 changed files with 4 additions and 4 deletions
|
@ -15,11 +15,11 @@ namespace Lidarr.Api.V1.Profiles.Release
|
|||
{
|
||||
_releaseProfileService = releaseProfileService;
|
||||
|
||||
GetResourceById = Get;
|
||||
GetResourceById = GetById;
|
||||
GetResourceAll = GetAll;
|
||||
CreateResource = Create;
|
||||
UpdateResource = Update;
|
||||
DeleteResource = Delete;
|
||||
DeleteResource = DeleteById;
|
||||
|
||||
SharedValidator.RuleFor(r => r).Custom((restriction, context) =>
|
||||
{
|
||||
|
@ -30,7 +30,7 @@ namespace Lidarr.Api.V1.Profiles.Release
|
|||
});
|
||||
}
|
||||
|
||||
private ReleaseProfileResource Get(int id)
|
||||
private ReleaseProfileResource GetById(int id)
|
||||
{
|
||||
return _releaseProfileService.Get(id).ToResource();
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ namespace Lidarr.Api.V1.Profiles.Release
|
|||
_releaseProfileService.Update(resource.ToModel());
|
||||
}
|
||||
|
||||
private void Delete(int id)
|
||||
private void DeleteById(int id)
|
||||
{
|
||||
_releaseProfileService.Delete(id);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue