mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
17 lines
558 B
C#
17 lines
558 B
C#
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());
|
|
}
|
|
}
|
|
} |