Use configure from cookies repo
This commit is contained in:
parent
07d9e86450
commit
b775e90b5b
|
|
@ -25,7 +25,7 @@ namespace Microsoft.Framework.DependencyInjection
|
||||||
|
|
||||||
public static IServiceCollection ConfigureIdentityApplicationCookie(this IServiceCollection services, Action<CookieAuthenticationOptions> configureOptions)
|
public static IServiceCollection ConfigureIdentityApplicationCookie(this IServiceCollection services, Action<CookieAuthenticationOptions> configureOptions)
|
||||||
{
|
{
|
||||||
return services.Configure<CookieAuthenticationOptions>(configureOptions, IdentityOptions.ApplicationCookieAuthenticationScheme);
|
return services.ConfigureCookieAuthentication(configureOptions, IdentityOptions.ApplicationCookieAuthenticationScheme);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static IdentityBuilder AddIdentity<TUser, TRole>(
|
public static IdentityBuilder AddIdentity<TUser, TRole>(
|
||||||
|
|
@ -82,6 +82,7 @@ namespace Microsoft.Framework.DependencyInjection
|
||||||
OnValidatePrincipal = SecurityStampValidator.ValidatePrincipalAsync
|
OnValidatePrincipal = SecurityStampValidator.ValidatePrincipalAsync
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
services.Configure<CookieAuthenticationOptions>(options =>
|
services.Configure<CookieAuthenticationOptions>(options =>
|
||||||
{
|
{
|
||||||
options.AuthenticationScheme = IdentityOptions.ExternalCookieAuthenticationScheme;
|
options.AuthenticationScheme = IdentityOptions.ExternalCookieAuthenticationScheme;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue