We have our own Notes object however we have individuals entering private notes in the Feed section.
Can we remove access to Feed for all users?
Like
3 comments
18:58 Aug 03, 2021
Hi Bogdan,
I updated access rights for only System Administrators to Read/Edit/Delete but Feed and all of its contents are still available to each of our users.
Feed is still viewable and editable regardless of the role our users are in. Are there any additional settings to restrict this access?
19:08 Aug 03, 2021
You can completely remove the Feed tab from a page by adding the following into the methods of the page:
onRender: function() { this.callParent(arguments); var tabs = this.get("TabsCollection"); if (tabs.contains("ESNTab")) { tabs.removeByKey("ESNTab"); } }
Ryan
Show all comments