I want to have a hierarchy for projects. The way I see to do this is to use projects with sub-projects:
[Game Projects]
-- Game 1
-- Game 2
[Music Projects]
-- Music General
-- Music Game
This works well but has the undesirable effect of two projects that I really don't want anyone to put anything into. Is there a way to "lock" the two parent projects, so that they are visible and will create the hierarchy but people can't accidentally put issues/bugs into?
Why don't you assign the users as VIEWER in the parent projects?
Or you could change $g_report_bug_threshold in those projects to the ADMINISTRATOR level.
Marc
---------------------------
Old Server: MantisBT 2.1.0, PHP 5.5.9, MySQL 5.7.16, Ubuntu Linux 14.04.3
New Server: MantisBT 2.26.1, PHP 8.1, MySQL 8.0, Ubuntu Linux 22.04.4
Why don't you assign the users as VIEWER in the parent projects?
Or you could change $g_report_bug_threshold in those projects to the ADMINISTRATOR level.
Thanks for the ideas. I'm using the former solution for now. Would the $g_report_bug_threshold idea mean editing .php files?
$g_report_bug_threshold idea would be set per project using Manage > Manage Configuration > Configuration Report.
No need to edit any PHP file, the setting being stored in the database.
Marc
---------------------------
Old Server: MantisBT 2.1.0, PHP 5.5.9, MySQL 5.7.16, Ubuntu Linux 14.04.3
New Server: MantisBT 2.26.1, PHP 8.1, MySQL 8.0, Ubuntu Linux 22.04.4
mcmo wrote:$g_report_bug_threshold idea would be set per project using Manage > Manage Configuration > Configuration Report.
No need to edit any PHP file, the setting being stored in the database.
mcmo wrote:$g_report_bug_threshold idea would be set per project using Manage > Manage Configuration > Configuration Report.
No need to edit any PHP file, the setting being stored in the database.
I'm not sure how to set this and I can't seem to find documentation explaining it. Obviously, I know what to set "Username" and "Project Name" to but "g_report_bug_threshold" doesn't seem to work for a "Configuration Option".
$g_report_bug_threshold is a global variable.
You should use this syntax when setting the value in a php file.
But when using the configuration report, you have to enter report_bug_threshold only.
Marc
---------------------------
Old Server: MantisBT 2.1.0, PHP 5.5.9, MySQL 5.7.16, Ubuntu Linux 14.04.3
New Server: MantisBT 2.26.1, PHP 8.1, MySQL 8.0, Ubuntu Linux 22.04.4