News Feed Mod

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
chiefwiggum
Posts: 2
Joined: 20 Feb 2012, 17:07

News Feed Mod

Post 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!! :)
chiefwiggum
Posts: 2
Joined: 20 Feb 2012, 17:07

Re: News Feed Mod

Post by chiefwiggum »

Bump!!

Is this something can can be achieved by settings in the Config file?
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: News Feed Mod

Post 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 );
Please use Search before posting and read the Manual
Post Reply