Page 1 of 1

Project members not in assign list [SOLVED]

Posted: 18 Mar 2022, 14:19
by MaxMax
These are my access levels and roles in Config:

Code: Select all

$g_access_levels_enum_string = '10:viewer,25:reporter,40:qa,60:developer,90:administrator';
The constants in customconstants:

Code: Select all

define( 'QA', 40 );
...and custom strings:

Code: Select all

$s_access_levels_enum_string = '10:viewer,25:reporter,40:qa,60:developer,90:administrator';
When I pull down the list for assignment, I only see project members with Developer and Administrator roles. I'm looking for a project member with the Role QA, but he isn't in the list.

Seems like there is some threshold I have missed somewhere. Can some one just give a short checklist of things to check?

Re: Project members not in assign list.

Posted: 19 Mar 2022, 08:12
by atrol
There is

Code: Select all

$g_handle_bug_threshold
https://mantisbt.org/docs/master/en-US/ ... fig.status
$g_handle_bug_threshold
This is the access level generally required to be access level needed to be listed in the assign to field. The default is DEVELOPER. If a more restrictive setting can be determined from $g_set_status_threshold, it will be used.

Re: Project members not in assign list.

Posted: 25 Mar 2022, 15:35
by MaxMax
No it didn't help to set:

Code: Select all

$g_handle_bug_threshold = QA;
$g_set_status_threshold = QA;
I can still not see anyone lower than Developer in the assign list.

Re: Project members not in assign list.

Posted: 25 Mar 2022, 16:01
by atrol
Select the affected project.
What do you see in row "Handle an issue" on Manage > Configuration > Workflow Thresholds page ?

Re: Project members not in assign list.

Posted: 28 Mar 2022, 14:19
by MaxMax
Ahh, I see now... Thank you, it works.
It makes sense now, to be assigned an issue you must of course be able to "Handle" an issue :D