Page 1 of 1

How to customize Standard Field Visibility?

Posted: 20 Sep 2019, 14:34
by Asura
Hi!

I'm currently working on a very deep customization of Mantis and now i'm stuck with one thing, a very dumb thing to be honest.
I have a field in bug report, a standard one (view_state), and i want it to be visible only by devs and above.
Any clue on how i can do that?

Thanks,

Asura.

Re: How to customize Standard Field Visibility?

Posted: 21 Sep 2019, 16:00
by atrol
Add the following line to file config/config_inc.php

Code: Select all

$g_set_view_status_threshold = DEVELOPER;

Re: How to customize Standard Field Visibility?

Posted: 24 Sep 2019, 16:39
by Asura
Thanks!