Browse Source

Make OrganizationUnitManager.FindChildrenAsync virtual

Co-authored-by: maliming <6908465+maliming@users.noreply.github.com>
pull/24901/head
copilot-swe-agent[bot] 1 month ago
parent
commit
5a8ac4d32c
  1. 2
      modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/OrganizationUnitManager.cs

2
modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/OrganizationUnitManager.cs

@ -148,7 +148,7 @@ public class OrganizationUnitManager : DomainService
} }
} }
public async Task<List<OrganizationUnit>> FindChildrenAsync(Guid? parentId, bool recursive = false) public virtual async Task<List<OrganizationUnit>> FindChildrenAsync(Guid? parentId, bool recursive = false)
{ {
if (!recursive) if (!recursive)
{ {

Loading…
Cancel
Save