Page 1 of 1

MY VIEW PAGE

Posted: 13 Jul 2016, 09:45
by NandoNaldo
Where can i modify the My View page ?

For all the users who are REPORTER or VIEWER should see only :

- Assigned to Me;
-Reported by Me ;
-Monitored by Me

Is this possibile ?

Thnx

Re: MY VIEW PAGE

Posted: 17 Jul 2016, 20:22
by atrol
There is the following setting
https://www.mantisbt.org/docs/master/en ... fig.myview

BTW, "Assigned to Me" for reporters makes just sense if you have changed default settings of Mantis.
Not sure if this is what you intended.

Re: MY VIEW PAGE

Posted: 19 Jul 2016, 06:59
by NandoNaldo
I want that reports should see olnly the box: - Assigned to Me; -Reported by Me ; -Monitored by Me and not the other box

THNX

Re: MY VIEW PAGE

Posted: 19 Jul 2016, 07:27
by atrol
Does it mean that you have configured that issues can be assigned to reporters?

If so, you can set the option in config_inc.php

Code: Select all

if ( current_user_get_access_level() == REPORTER ) {
  $g_my_view_boxes = array (
	'assigned'      => '1',
	'unassigned'    => '0',
	'reported'      => '3',
	'resolved'      => '0',
	'recent_mod'    => '0',
	'monitored'     => '6',
	'feedback'      => '0',
	'verify'        => '0',
	'my_comments'   => '0'
  );
}