We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f66ab73 commit 2a4ab34Copy full SHA for 2a4ab34
aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Startup/Startup.cs
@@ -47,6 +47,11 @@ public IServiceProvider ConfigureServices(IServiceCollection services)
47
};
48
});
49
50
+ services.AddAuthentication(options =>
51
+ {
52
+ options.DefaultScheme = "Cookies";
53
+ }).AddCookie();
54
+
55
IdentityRegistrar.Register(services);
56
AuthConfigurer.Configure(services, _appConfiguration);
57
0 commit comments