I want to know, if it is possible to hide the Content dahsboard for certain roles (eg. Writers and Editors). In Umbraco 13.7.2
Yes, it is possible to remove an Umbraco dashboard. You have full control through C# by modifying the Dashboards collection:
If you want to remove a dashboard entirely, you can call Remove
on the collection, and if you want to hide it for certain user groups, you can modify its IAccessRule[]
:
1 Like