Patch #8757
openAdd hook for bulk edit post-save state
0%
Description
There is a hook which gets invoked just after an individual issue gets updated, which allows for plugins to perform any post-save actions. There ought to be a similar hook for when a number of issues have been updated via the bulk-editing process. I've patched the core code to enable such a hook - `controller_issues_bulk_edit_after_save`.
Patch available at https://github.com/7citylearning/redmine/commit/f88c6ca01e89246b5bcd62fa26cc651ee33ba212
Files
Related issues
Updated by Etienne Massip over 13 years ago
- Category changed from Issues to Plugin API
Updated by An Phan over 9 years ago
+1. Some of the webhook plugins out there is not complete because of this hook missing, for example Redmine Webhook.
I've no idea why this takes so long to be merged. There was even a patch 4 years ago: #5714. I mean, how hard can it be to add this one liner into issues_controller.rb
?
call_hook(:controller_issues_bulk_edit_after_save, { :params => params, :issue => issue, :journal => journal })
Updated by Hiroshi Miura over 9 years ago
+1. To improve user productivity with webhook or other plugins, and chat platforms such as hipchat, slack, kandan and hubot.
Updated by Adam Pfeiffer over 8 years ago
I absolutely need this as well. It does seem to be a simple change that should have been there from the beginning. I will modify my code locally to make sure this works with my plugin.
THanks
Updated by Joel SCHAAL over 8 years ago
+1
I would like to see that change in the next version.
Is this change too risky or too dirty ?
Does it need to be adapted before acceptance ?
Updated by Toshi MARUYAMA about 8 years ago
- Category changed from Plugin API to Hook requests
Updated by Tobias Böhm over 7 years ago
- File issues_controller_bulk_update_after_save_hook.patch issues_controller_bulk_update_after_save_hook.patch added
I just created a patch for this issue that applies to the current master code base. Please find it attached.
Updated by Toshi MARUYAMA over 7 years ago
- Related to Feature #25454: Add bulk edit after save hook added
Updated by Serghei Zagorinyak over 7 years ago
This patch is wrong.
Implemented this way, if an exception is raised within bulk_edit_after_save
it will prevent succeeding issues from being saved while they should be processed and only the problematic issue should be rejected.
Updated by Tobias Böhm over 7 years ago
You are right, exceptions raising from the hook are not handled. But this applies also to the already existing hook :controller_issues_bulk_edit_after_save
. If an exception is raised there, all following issues will not be processed.
This should be addressed for the whole process (before-hook, save, after-hook) or loop at once, I guess, in a separate issue and patch.
Updated by Serghei Zagorinyak over 7 years ago
Tobias Böhm wrote:
You are right, exceptions raising from the hook are not handled. But this applies also to the already existing hook
:controller_issues_bulk_edit_after_save
. If an exception is raised there, all following issues will not be processed.This should be addressed for the whole process (before-hook, save, after-hook) or loop at once, I guess, in a separate issue and patch.
Yes, didn't notice that first. Hope this will be fixed someday.
Updated by Toshi MARUYAMA over 7 years ago
- Related to deleted (Feature #25454: Add bulk edit after save hook)
Updated by Toshi MARUYAMA over 7 years ago
- Has duplicate Feature #25454: Add bulk edit after save hook added
Updated by Julián Maestri about 6 years ago
- File controller_issues_bulk_edit_after_save.patch controller_issues_bulk_edit_after_save.patch added
Patch based on redmine v3.4.6
To avoid the problems with stopping the bulk update if something fails on the hook, iterate over the saved issues after saving them.
Updated by Marius BĂLTEANU about 6 years ago
- Has duplicate Feature #29897: hook: controller_issues_bulk_edit_after_save added
Updated by Go MAEDA about 6 years ago
- Has duplicate Patch #5714: Request for controller_issues_bulk_edit_after_save hook added
Updated by Jethro Yu about 6 years ago
+1
I am modifying a plugin that reads journal of bulk edit issues, too.
https://github.com/jcppkkk/redmine_hipchat/commit/45d740de41bcaa68f64d5def16a9367e6291ed8b#diff-a7f255c397e668f358fc183f6802c3f3R25
Julián Maestri wrote:
Patch based on redmine v3.4.6
To avoid the problems with stopping the bulk update if something fails on the hook, iterate over the saved issues after saving them.
Updated by Julián Maestri almost 6 years ago
Any chance for this to be included in the roadmap? at least as Unplanned?