mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
702 B
25 lines
702 B
using Volo.Abp.Authorization.Permissions;
|
|
using Volo.Abp.Guids;
|
|
using Volo.Abp.MultiTenancy;
|
|
using Volo.Abp.Permissions;
|
|
using Volo.Abp.Session;
|
|
|
|
namespace Volo.Abp.Identity
|
|
{
|
|
public class UserPermissionManagementProvider : PermissionManagementProvider
|
|
{
|
|
public override string Name => UserPermissionValueProvider.ProviderName;
|
|
|
|
public UserPermissionManagementProvider(IPermissionGrantRepository
|
|
permissionGrantRepository,
|
|
IGuidGenerator guidGenerator,
|
|
ICurrentTenant currentTenant)
|
|
: base(
|
|
permissionGrantRepository,
|
|
guidGenerator,
|
|
currentTenant)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |