Plugin is developed by Southbridge.
This plugin is designed to reopen the frozen issues on the scheduled time.
Please help us make this plugin better telling us of any issues you'll face using it. We are ready to answer all your questions regarding this plugin.
Plugin executes the 'rake issue_open_date:switch' command every 5 minutes
It will return all the tickets that have the Frozen status and are scheduled to be reopened on сurrent time.
All such tickets will get the New status.
Install the plugin and perform database migration:
bundle exec rake redmine:plugins:migrate
Specify in the plugin settings which tickets will be considered as New or Frozen.
Plugin supports two ways of scheduling jobs:
Perform this to add tasks to CRON:
bundle exec whenever -i redmine_issue_open_date -f *path_to_your_app*/plugins/redmine_issue_open_date/config/schedule.rb
Perform this to remove tasks from CRON:
bundle exec whenever -c redmine_issue_open_date -f *path_to_your_app*/plugins/redmine_issue_open_date/config/schedule.rb
Run this task to inititalize sidekiq-cron job:
bundle exec rake issue_open_date:sidekiq:init RAILS_ENV=production
Note that you need to have sidekiq-cron gem installed.