Page 1 of 1

Search for any Mantis issues you touched.

Posted: 07 Mar 2023, 22:08
by colivarez
My developers would sometimes like to find any of the issues they may have commented on, were assigned but someone else took it or touched it in some fashion. We don't see a query on how to do this but was wondering if anyone has come up with a plugin they're using or maybe adding a field to search on in Mantis that does this.

TIA

Re: Search for any Mantis issues you touched.

Posted: 08 Mar 2023, 14:17
by cas
You can find that best in the History table. Normally changes are stored there by user so it.
Simple query does the trick (SELECT distinct user_id,bug_id FROM `mantis_bug_history_table`where user_id = X order by bug_id)
That would be the base of a very simple plugin :mrgreen:

Re: Search for any Mantis issues you touched.

Posted: 08 Mar 2023, 19:56
by atrol
There is "Note by" filter on "View Issues" page.