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 da522e7 commit 1761f2cCopy full SHA for 1761f2c
aspnet-core/src/AbpCompanyName.AbpProjectName.Core/Identity/IdentityRegistrar.cs
@@ -10,11 +10,11 @@ namespace AbpCompanyName.AbpProjectName.Identity
10
{
11
public static class IdentityRegistrar
12
13
- public static void Register(IServiceCollection services)
+ public static IdentityBuilder Register(IServiceCollection services)
14
15
services.AddLogging();
16
17
- services.AddAbpIdentity<Tenant, User, Role>()
+ return services.AddAbpIdentity<Tenant, User, Role>()
18
.AddAbpTenantManager<TenantManager>()
19
.AddAbpUserManager<UserManager>()
20
.AddAbpRoleManager<RoleManager>()
0 commit comments