Page 1 of 1

allowing REPORTER to mark issue resolved

Posted: 05 Jul 2011, 19:21
by crp
Is there a way to configure the MT so that a reporter can mark as resolved the issues they reported ?
using version 1.2.4

Re: allowing REPORTER to mark issue resolved

Posted: 05 Jul 2011, 20:21
by atrol
Add the following line to file config_inc.php

Code: Select all

$g_allow_reporter_close		= ON;

Re: allowing REPORTER to mark issue resolved

Posted: 05 Jul 2011, 20:58
by crp
I want to allow the reporter to mark the issue resolved , not just close an issue.

Re: allowing REPORTER to mark issue resolved

Posted: 05 Jul 2011, 21:21
by atrol

Code: Select all

$g_update_bug_threshold			= REPORTER;
But this is also not what you want, because this affects all issues, not only own issues.

Re: allowing REPORTER to mark issue resolved

Posted: 06 Jul 2011, 17:33
by crp
hence my original question:
Is there a way to configure MT so that a reporter can update as RESOLVED only the issues they reported.

Re: allowing REPORTER to mark issue resolved

Posted: 06 Jul 2011, 19:43
by atrol
crp wrote:hence my original question:
Is there a way to configure MT so that a reporter can update as RESOLVED only the issues they reported.
You have to change the source code for this

Can you explain the use case where this is needed?
Setting the status to resolved means in a standard installation and a typical workflow that a developer sets the resolution (maybe fixed, duplicate , ....)
sets a duplicate ID if needed, sets "Assigned To" user, sets the "Fixed in Version" field and maybe adds a Note. (most of these actions are not typical for reporters)
After that the reporter might close the issue (which is possible by setting $g_allow_reporter_close = ON;)