Access permission to Commerce Customize left side tabs
- Check the the access permission of the left menu
- Add a custom PermissionTypes to the code base:
[PermissionTypes]
public static class ProductPermissions
{
static ProductPermissions()
{
ProductView = new PermissionType(Permissions.GroupName, "product:mng:view");
}
public static PermissionType ProductView { get; private set; }
}
- Add permission in all link ids in leftmnu.xml:
Comments
Post a Comment