Page 1 of 1

News Feed Mod

Posted: 20 Feb 2012, 17:13
by chiefwiggum
Hi,

Sorry if this is a duplicated post, i did search but couldnt find anything to match my questions.

I'm also not 100% this is a mod!!
What i'd like to be able to do, is have by default users only able to post news to their assigned projects and only allow admins the ability to post news to "All Projects" - Is it possible to achieve this?

Thanks
Pete :D

Oh, did anyone else get stumpped by the anti spam question? - I ended up Googling the question to get the answer, so i'd love it if someone could explain how to get the right figure!! :)

Re: News Feed Mod

Posted: 27 Feb 2012, 14:24
by chiefwiggum
Bump!!

Is this something can can be achieved by settings in the Config file?

Re: News Feed Mod

Posted: 27 Feb 2012, 20:32
by atrol
You have to use page "Manage" -> "Manage Configuration" -> "Configuration Report"

Project Name: The one you want to configure
Configuration Option: manage_news_threshold
Type: int
Value: 55

The example of 55 means all developers, managers, administrators

Use one of the following numbers if you use a default installation without any customized access levels

Code: Select all

define( 'ANYBODY', 0 );
define( 'VIEWER', 10 );
define( 'REPORTER', 25 );
define( 'UPDATER', 40 );
define( 'DEVELOPER', 55 );
define( 'MANAGER', 70 );
define( 'ADMINISTRATOR', 90 );
define( 'NOBODY', 100 );