Project

General

Profile

Plugins Directory » redmine duplicates of duplicate issues

Author: eli e
Website: -
Code repository: https://github.com/pcx229/redmine_duplicates_of_duplicate_issues
Registered on: 2022-10-07 (over 1 year ago)
Current version: 1.0.0
Compatible with: Redmine 5.0.x
User ratings:   (0)

Redmine lets you specify an issue as a duplicate of another issue using relations.
direct duplicate issues are two issues with a duplicate relation between them (Is\Has duplicate).
you can see direct duplicate issues in the project issues page by looking at the column "Related issues" or in the issue page under "Related issues" section.
indirect duplicates are two issues that are connected in any way by duplicate relations.
for example:

A is duplicate of C
B is duplicate of C
==> A is indirect duplicate of B

this plugin will add:

  1. a column to project issues page that will show you all direct and indirect duplicate of an issue.
  2. a filter that allows you to search on the added column.
  3. a section in issue page that list all the duplicate issues

Installation notes

install

  1. download plugin and copy plugin directory redmine_duplicates_of_duplicate_issues to Redmine's plugins directory.
  2. initialize the database by running the following command in Redmine's directory:
    bundle exec rake redmine:plugins:migrate RAILS_ENV=production
  3. restart server

uninstall

  1. remove database by running the following command:
    bundle exec rake redmine:plugins:migrate NAME=redmine_duplicates_of_duplicate_issues VERSION=0 RAILS_ENV=production
  2. go to Redmine's plugins directory, delete plugin directory redmine_duplicates_of_duplicate_issues
  3. restart server

Changelog

1.0.0 (2022-10-05)

Compatible with Redmine 5.0.x.