closed findings not in Myview

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
thietkerem
Posts: 1
Joined: 29 Jun 2019, 17:01

closed findings not in Myview

Post by thietkerem »

Is it possible to filter the closed items from the MyView page so they will not be shown there (in the view list all items may be shown)???
cas
Posts: 1622
Joined: 11 Mar 2006, 16:08
Contact:

Re: closed findings not in Myview

Post by cas »

Yes you can.
place the below code in cor/config_inc.php and adjust as you like.

Code: Select all

####################
# My View Settings #
####################

/**
 * Number of bugs shown in each box
 * @global integer $g_my_view_bug_count
 */
$g_my_view_bug_count = 10;

/**
 * Boxes to be shown and their order
 * A box that is not to be shown can have its value set to 0
 * @global array $g_my_view_boxes
 */
$g_my_view_boxes = array (
	'assigned'      => '1',
	'unassigned'    => '2',
	'reported'      => '3',
	'resolved'      => '4',
	'recent_mod'    => '5',
	'monitored'     => '6',
	'feedback'      => '0',
	'verify'        => '0',
	'my_comments'   => '0'
);

/**
 * Toggle whether 'My View' boxes are shown in a fixed position (i.e. adjacent
 * boxes start at the same vertical position)
 * @global integer $g_my_view_boxes_fixed_position
 */
$g_my_view_boxes_fixed_position = ON;

 
Post Reply