New notification list on my_view_page

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
patri4rch
Posts: 1
Joined: 18 Apr 2018, 12:04

New notification list on my_view_page

Post by patri4rch »

Hello,
My company working on mantis for a over a month, and we think it is really great software. But we need to adjust it to our need.

So i wanted to created new status, something like "WORKING ON IT", i tryed it and i figure out making new status is not that hard as i think. It's worked fine, but nothing showed on timeline and my_view_page. So i decide to just change one of existing status and change the name, colors etc. I chose "acknowlege" status becasue we think we dont need it at all.

I have a question how to turn on notifications on time line with any kind of status - in my case "acknowledge" ?
How to turn on list of "acknoledge" status on my_view_page wich will show all of bugs with status "acknowledge" to all users ?

Thanks for any reply and advice ! :)
Starbuck
Posts: 219
Joined: 14 Feb 2006, 02:53
Location: USA
Contact:

Re: New notification list on my_view_page

Post by Starbuck »

Check config_inc.php. This is my View setting, notice that I've added status "testing".

Code: Select all

$g_my_view_boxes = array (
        'new'           => '1',
        'feedback'      => '2',
        'verify'        => '3',
        'in_progress'   => '4',
        'testing'       => '5',
        'assigned'      => '6',
        'unassigned'    => '7',
        'monitored'     => '8',
        'reported'      => '9',
        'recent_mod'    => '10',
        'resolved'      => '11',
);
Ref: https://www.mantisbt.org/docs/master/en ... fig.myview
If you want Mantis to work differently, use or create a plugin. Visit the Plugins forums.
Ask developers to create a plugin that you need - and motivate them to help you!
Post Reply