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
Search for any Mantis issues you touched.
Moderators: Developer, Contributor
Re: Search for any Mantis issues you touched.
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
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
