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.
15 lines
550 B
15 lines
550 B
using System.Web.Mvc;
|
|
using System.Web.WebPages;
|
|
using NzbDrone.Web.Helpers;
|
|
using NzbDrone.Web.Models;
|
|
|
|
[assembly: WebActivator.PreApplicationStartMethod(typeof(NzbDrone.Web.App_Start.RegisterDatatablesModelBinder), "Start")]
|
|
|
|
namespace NzbDrone.Web.App_Start {
|
|
public static class RegisterDatatablesModelBinder {
|
|
public static void Start() {
|
|
if (!ModelBinders.Binders.ContainsKey(typeof(DataTablesParams)))
|
|
ModelBinders.Binders.Add(typeof(DataTablesParams), new DataTablesModelBinder());
|
|
}
|
|
}
|
|
} |