Hi,
I need to display(report) all bugs assigned at least one time during the bug's life to a specific developer. For example all bugs on which the developer "xxx" has been involved, even if now the bug is assigned to another developer or closed. Now I'm able to report all bugs currently assigned to a specific developer.
Any suggestion?
Thanks
Stefano
Report all bugs involving one developer
Moderators: Developer, Contributor
-
worschtsupp
- Posts: 17
- Joined: 07 Nov 2009, 17:42
- Location: Germany
Re: Report all bugs involving one developer
Very sure that this is not possible in Mantis itself. The fastest solution might be to analyze the database-structure yourself and try your own SQL-query. For reverse-engineering and MySQL you can use MySQL-Workbench. Another approach is to file an enhancement-request at Mantis-Buftracker.
Re: Report all bugs involving one developer
The information can be found in table mantis_bug_history_table by selecting distinct bug_id where user_id = <UserIdYouAreSearchingFor>