Binders full of women are no longer ignored

pull/3113/head
Mark McDowall 12 years ago
parent 21ccdaa68b
commit d50e31f994

3
.gitignore vendored

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

@ -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;
}
}
}
Loading…
Cancel
Save