Browse Source
Merge pull request #8133 from abpframework/maliming/identity-mongodb-patch
Use correct MongoDB repository.
pull/8135/head
liangshiwei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
modules/identity/src/Volo.Abp.Identity.MongoDB/Volo/Abp/Identity/MongoDB/AbpIdentityMongoDbModule.cs
|
|
|
@ -16,8 +16,8 @@ namespace Volo.Abp.Identity.MongoDB |
|
|
|
{ |
|
|
|
options.AddRepository<IdentityUser, MongoIdentityUserRepository>(); |
|
|
|
options.AddRepository<IdentityRole, MongoIdentityRoleRepository>(); |
|
|
|
options.AddRepository<IdentityClaimType, MongoIdentityRoleRepository>(); |
|
|
|
options.AddRepository<OrganizationUnit, MongoIdentityRoleRepository>(); |
|
|
|
options.AddRepository<IdentityClaimType, MongoIdentityClaimTypeRepository>(); |
|
|
|
options.AddRepository<OrganizationUnit, MongoOrganizationUnitRepository>(); |
|
|
|
options.AddRepository<IdentitySecurityLog, MongoIdentitySecurityLogRepository>(); |
|
|
|
options.AddRepository<IdentityLinkUser, MongoIdentityLinkUserRepository>(); |
|
|
|
}); |
|
|
|
|