November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
In latest EPiServer version code that regulates its availability is following:
menuItem.IsAvailable = (request => PrincipalInfo.HasEditAccess);
I guess it's the same for older versions as well.
"HasEditAccess" basically checks whether current user can go to "/episerver/cms/edit" (episerver may be replaced by your UI path). In geneal that would mean that all Editors will have access to "ReportCenter".
Hi Valdis
Thank you for your fast reply.
Where did you find that code?
menuItem.IsAvailable = (request => PrincipalInfo.HasEditAccess);
I have open the EPiServer.Cms.Shell.UI package, but have no clue which file need to be modified . Can you provide some details how to change it to WebAdmin/Administrator?
Thanks
Hi
We developed custom report using episerver gui plugin , everything works as expected, but we also want to hide "Report" tab from the CMS menu from the admin.
I removed the user from WebAdmin and Administrator permission group, so user was not able to see the admin tab after he logged in, but the "report" tab is showing under the CMS tab, I couldn't find any settings to hide this.
The only solution I found so far is to explicitly adding in the web.config to prevent user access to this page, but it looks urgly as user who doesn't have clicked on this link, it will show a popup windows with login.
Can you guys suggest a best way to handle this?