forked from eurailcom/redmine_issue_status_changer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added rake task to reopen issues with open subtasks
- Loading branch information
1 parent
2747ec5
commit 43a6797
Showing
5 changed files
with
109 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace :redmine do | ||
namespace :plugins do | ||
namespace :issue_status_change do | ||
desc <<-END_DESC | ||
Bla bla bla | ||
rake redmine:plugins:issue_status_change:open_issues_with_open_subtasks RAILS_ENV=production | ||
END_DESC | ||
task open_issues_with_open_subtasks: :environment do |_t, _args| | ||
IssueStatusChanger.open_issues_with_open_subtasks | ||
end | ||
end | ||
end | ||
end |