I am getting an issue where anonymous users cannot see feed nodes (not feed item nodes) even when granted proper permissions.

If I grant anonymous users access to administer feeds, they are able to see them and edit them!

Any ideas - anyone else getting this?

Thanks,

Chapman

Comments

Ashraf Amayreh’s picture

Status: Active » Closed (fixed)

More granular permissions will be available in the next release, it's planned to come out within days...

livido’s picture

Actually we need to add one permission like : 'view aggregation feeds'.


function aggregation_perm()
{
	return array('view aggregation feeds' ,'manage aggregation feeds', 'manage aggregation items', 'view aggregation items',
	  	'manage own feed items', 'manage feed items');
}

then change module aggregation_feed_access


function aggregation_feed_access($op, $node)
{
	if($op == 'view')	return user_access('view aggregation feeds');
	else return user_access('manage aggregation feeds');
}