Skip to content

Commit

Permalink
Resolved #56: Remove custom auth schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
hikalkan committed Jun 12, 2017
1 parent 3bf744d commit 99798a8
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ public static void Register(IServiceCollection services)
{
services.AddLogging();

services.AddAbpIdentity<Tenant, User, Role>(options =>
{
options.Cookies.ApplicationCookie.AuthenticationScheme = "AbpZeroTemplateAuthSchema";
options.Cookies.ApplicationCookie.CookieName = "AbpZeroTemplateAuth";
})
services.AddAbpIdentity<Tenant, User, Role>()
.AddAbpTenantManager<TenantManager>()
.AddAbpUserManager<UserManager>()
.AddAbpRoleManager<RoleManager>()
Expand Down

0 comments on commit 99798a8

Please sign in to comment.