You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
558 B
17 lines
558 B
using DataTables.Mvc.Core.Helpers;
|
|
using DataTables.Mvc.Core.Models;
|
|
using System.Web.Mvc;
|
|
|
|
[assembly: WebActivator.PreApplicationStartMethod(typeof(NzbDrone.Web.App_Start.DataTablesModelBinderActivator), "Start")]
|
|
|
|
namespace NzbDrone.Web.App_Start
|
|
{
|
|
public static class DataTablesModelBinderActivator
|
|
{
|
|
public static void Start()
|
|
{
|
|
if (!ModelBinders.Binders.ContainsKey(typeof(DataTablesPageRequest)))
|
|
ModelBinders.Binders.Add(typeof(DataTablesPageRequest), new DataTablesModelBinder());
|
|
}
|
|
}
|
|
} |