AuthorizationFilters

just upgraded from 1.59 to 1.64 I get two related obsolete messaged related to Authorization.

In:
public static void ConfigureHangfire(IAppBuilder app)
I use:
app.UseHangfireDashboard("/hangfire", new DashboardOptions
{
AuthorizationFilters = new[] { new HangfireAuthorizationFilter() }
})
AuthorizationFilters is obsolete use Authorization property instead

The documentaiton seems to refer to the obsolete method (http://docs.hangfire.io/en/latest/configuration/using-dashboard.html#configuring-authorization). Do you by any chance have an example on the new Authorization method?

/Morten