Page 1 of 1

Unable to assign tasks to reporters in Private Project

Posted: 07 Mar 2019, 22:11
by haseebraza
I have a private project with 6 reporters and 1 manager when manager report an issue he can only assign the issue to himself and administrator but i want to give access to manager to assign that task to any reporter.
secondly, even administrator can also assign this task to only himself or to the manager of that project.

Re: Unable to assign tasks to reporters in Private Project

Posted: 08 Mar 2019, 10:44
by cas
Default within Mantis the minimum level required for this is DEVELOPER and this is handled via a setting which you can adjust.
The setting is:
$g_handle_bug_threshold = DEVELOPER;
Of course you can set this to REPORTER
Then make sure you add the following line to config\config_inc.php:
$g_handle_bug_threshold = REPORTER;

Re: Unable to assign tasks to reporters in Private Project

Posted: 11 Mar 2019, 18:28
by haseebraza
Issue is resolved. Thanks for your expensive time.

Re: Unable to assign tasks to reporters in Private Project

Posted: 22 Mar 2019, 14:35
by haseebraza
Hi,
i have upgraded from 2.1 to 2.5but the only issue i have is that in private/public there is no user listed but except of superuser/administrator
even i have changed value but it still not working.

/**
* access level needed to view private bugs
* Look in the constant_inc.php file if you want to set a different value
* @global integer $g_private_bug_threshold
*/
$g_private_bug_threshold = UPDATER;

/**
* access level needed to be able to be listed in the assign to field.
* @global integer $g_handle_bug_threshold
*/
$g_handle_bug_threshold = UPDATER;

Re: Unable to assign tasks to reporters in Private Project

Posted: 22 Mar 2019, 21:36
by atrol
haseebraza wrote: 22 Mar 2019, 14:35 i have upgraded from 2.1 to 2.5
Why 2.5 but not latest 2.20.0?

Re: Unable to assign tasks to reporters in Private Project

Posted: 26 Mar 2019, 14:41
by haseebraza
Will update soon but currently working here in 2.5.1

Re: Unable to assign tasks to reporters in Private Project

Posted: 26 Mar 2019, 15:48
by haseebraza
Do you any solution fro this ?

Re: Unable to assign tasks to reporters in Private Project

Posted: 27 Mar 2019, 10:40
by cas
Check in config/config_inc.php the same setting is still available or did you change previous time in config_defaults_inc.php becuase then your setting has been overwritten during the upgrade.