@ -11,11 +11,11 @@ namespace Lidarr.Api.V1.Profiles.Quality
[V1ApiController]
public class QualityProfileController : RestController < QualityProfileResource >
{
private readonly I ProfileService _p rofileService;
private readonly I QualityProfileService _qualityP rofileService;
public QualityProfileController ( I ProfileService p rofileService)
public QualityProfileController ( I QualityProfileService qualityP rofileService)
{
_ profileService = p rofileService;
_ qualityProfileService = qualityP rofileService;
SharedValidator . RuleFor ( c = > c . Name ) . NotEmpty ( ) ;
SharedValidator . RuleFor ( c = > c . Cutoff ) . ValidCutoff ( ) ;
SharedValidator . RuleFor ( c = > c . Items ) . ValidItems ( ) ;
@ -25,14 +25,14 @@ namespace Lidarr.Api.V1.Profiles.Quality
public ActionResult < QualityProfileResource > Create ( QualityProfileResource resource )
{
var model = resource . ToModel ( ) ;
model = _ p rofileService. Add ( model ) ;
model = _ qualityP rofileService. Add ( model ) ;
return Created ( model . Id ) ;
}
[RestDeleteById]
public void DeleteProfile ( int id )
{
_ p rofileService. Delete ( id ) ;
_ qualityP rofileService. Delete ( id ) ;
}
[RestPutById]
@ -40,20 +40,20 @@ namespace Lidarr.Api.V1.Profiles.Quality
{
var model = resource . ToModel ( ) ;
_ p rofileService. Update ( model ) ;
_ qualityP rofileService. Update ( model ) ;
return Accepted ( model . Id ) ;
}
public override QualityProfileResource GetResourceById ( int id )
{
return _ p rofileService. Get ( id ) . ToResource ( ) ;
return _ qualityP rofileService. Get ( id ) . ToResource ( ) ;
}
[HttpGet]
public List < QualityProfileResource > GetAll ( )
{
return _ p rofileService. All ( ) . ToResource ( ) ;
return _ qualityP rofileService. All ( ) . ToResource ( ) ;
}
}
}