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.
22 lines
744 B
22 lines
744 B
3 years ago
|
using Volo.Abp.Authorization.Permissions;
|
||
|
using Volo.Abp.Guids;
|
||
|
using Volo.Abp.MultiTenancy;
|
||
|
|
||
|
namespace Sanhe.Abp.MenuManagement.Identity
|
||
|
{
|
||
|
public class UserMenuManagementProvider : MenuManagementProvider
|
||
|
{
|
||
|
public UserMenuManagementProvider(
|
||
|
IMenuGrantRepository menuGrantRepository,
|
||
|
IPermissionDefinitionManager permissionDefinitionManager,
|
||
|
IMenuGrantChecker menuGrantChecker,
|
||
|
IGuidGenerator guidGenerator,
|
||
|
ICurrentTenant currentTenant) :
|
||
|
base(menuGrantRepository, permissionDefinitionManager, menuGrantChecker, guidGenerator, currentTenant)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override string Name => UserPermissionValueProvider.ProviderName;
|
||
|
}
|
||
|
}
|