Project members not in assign list [SOLVED]

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
MaxMax
Posts: 5
Joined: 12 Oct 2020, 20:42

Project members not in assign list [SOLVED]

Post 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?
Last edited by MaxMax on 28 Mar 2022, 14:20, edited 1 time in total.
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Project members not in assign list.

Post 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.
Please use Search before posting and read the Manual
MaxMax
Posts: 5
Joined: 12 Oct 2020, 20:42

Re: Project members not in assign list.

Post 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.
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Project members not in assign list.

Post by atrol »

Select the affected project.
What do you see in row "Handle an issue" on Manage > Configuration > Workflow Thresholds page ?
Please use Search before posting and read the Manual
MaxMax
Posts: 5
Joined: 12 Oct 2020, 20:42

Re: Project members not in assign list.

Post 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
Post Reply