Binders full of women are no longer ignored

This commit is contained in:
Mark McDowall 2012-11-13 17:14:27 -08:00
parent 21ccdaa68b
commit d50e31f994
2 changed files with 22 additions and 1 deletions

3
.gitignore vendored
View File

@ -17,8 +17,9 @@ Thumbs.db
*.cache
*.ilk
*.log
[Bb]in*/
[Bb]in
[Dd]ebug*/
[Rrelease]*/
*.lib
*.sbr
*.nzb

View File

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using NzbDrone.Core.Repository.Quality;
namespace NzbDrone.Web.Helpers.Binders
{
public class QualityTypesBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var value = bindingContext.ValueProvider.GetValue("quality");
var quality = QualityTypes.FindById(Convert.ToInt32(value.AttemptedValue));
return quality;
}
}
}