Browse Source

fix: 查询租户API匿名访问

pull/89/head 6.0.1.2
王军 4 years ago
parent
commit
3657af8145
  1. 1
      aspnet-core/modules/BasicManagement/src/Lion.AbpPro.BasicManagement.Application/Tenants/VoloTenantAppService.cs

1
aspnet-core/modules/BasicManagement/src/Lion.AbpPro.BasicManagement.Application/Tenants/VoloTenantAppService.cs

@ -14,6 +14,7 @@ namespace Lion.AbpPro.BasicManagement.Tenants
_tenantAppService = tenantAppService;
}
[AllowAnonymous]
public async Task<FindTenantResultDto> FindTenantByNameAsync(FindTenantByNameInput input)
{
return await _abpTenantAppService.FindTenantByNameAsync(input.Name);

Loading…
Cancel
Save