Best way to implement a "Filed Against version" extension
Added by James Moore about 14 years ago
Hello, we like to keep track of what version a problem is reported against. What would be the cleanest way to extend redmine to add this functionailty?
Replies (3)
RE: Best way to implement a "Filed Against version" extension - Added by James Moore about 14 years ago
I need to add that I want to reuse our existing versions basically showing the same options that appear in Filed Against drop-down.
It seems like I might be able to do this a few different ways
1) extend issues to add a new field - its not clear to me how this would be doen via a plugin
2) extend custom fields to add a new "version" type - its not clear to me how to make a generic version type map to the proper version table for the given project.
RE: Best way to implement a "Filed Against version" extension - Added by Felix Schäfer about 14 years ago
James Moore wrote:
1) extend issues to add a new field - its not clear to me how this would be doen via a plugin
That would work.
2) extend custom fields to add a new "version" type - its not clear to me how to make a generic version type map to the proper version table for the given project.
That should work too, haven't played enough with the custom fields yet though.
RE: Best way to implement a "Filed Against version" extension - Added by James Moore almost 12 years ago
I finally got around to building this as a plugin.