Removing Feed from page

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 0

Like

3 comments

Hello George,



You can set up access rights for each channel in the feed section:

 

Best regards,

Bogdan

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?

 

 

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