MY VIEW PAGE

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
NandoNaldo
Posts: 122
Joined: 09 Mar 2016, 21:44

MY VIEW PAGE

Post 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
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: MY VIEW PAGE

Post 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.
Please use Search before posting and read the Manual
NandoNaldo
Posts: 122
Joined: 09 Mar 2016, 21:44

Re: MY VIEW PAGE

Post 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
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: MY VIEW PAGE

Post 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'
  );
}
Please use Search before posting and read the Manual
Post Reply