Page 1 of 1

Set default view status to Private on a project

Posted: 23 May 2007, 16:23
by phil81uk
Hello,

Is there a way of getting the Default view status to be Private when reporting an issue? However, the catch is that I only want this to apply to a particular project and not all the projects in my Mantis installation.

I am using version 1.0.5.

Thank you

Posted: 23 May 2007, 20:57
by deboutv
Use a SQL client and execute the following query (check the name of the table and replace # by the project_id number):

INSERT INTO mantis_config_table (`config_id`, `project_id`, `user_id`, `access_reqd`, `type`, `value`) VALUES ('default_bug_view_status', #, 0, 90, 1, '50')

Posted: 02 Jul 2007, 18:57
by phil81uk
Wow that worked a treat!

Is there something which can be done so that all newly created projects have a default setting of Private?