Browse Source

Merge pull request #9949 from abpframework/liangshiwei/permission

Fix PermissionAppService
pull/9950/head
maliming 4 years ago
committed by GitHub
parent
commit
c4bf722c28
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      modules/permission-management/src/Volo.Abp.PermissionManagement.Application/Volo/Abp/PermissionManagement/PermissionAppService.cs

3
modules/permission-management/src/Volo.Abp.PermissionManagement.Application/Volo/Abp/PermissionManagement/PermissionAppService.cs

@ -6,7 +6,6 @@ using Microsoft.AspNetCore.Authorization;
using Microsoft.Extensions.Options;
using Volo.Abp.Application.Services;
using Volo.Abp.Authorization.Permissions;
using Volo.Abp.Features;
using Volo.Abp.MultiTenancy;
using Volo.Abp.SimpleStateChecking;
@ -68,7 +67,7 @@ namespace Volo.Abp.PermissionManagement
if (!neededCheckPermissions.Any())
{
return result;
continue;
}
var grantInfoDtos = neededCheckPermissions.Select(x => new PermissionGrantInfoDto

Loading…
Cancel
Save