Vote #77551
未完了Hook for deleted issues
0%
説明
Hello,
I saw the "list of hooks":http://www.redmine.org/projects/redmine/wiki/Hooks_List and I'd like to know if it was possible to have a new hook letting us doing things when an issue is deleted.
Why not:
:controller_issues_before_destroy :controller_issues_after_destroy
journals
These Hooks can then be used to maintain a recycle bin in Redmine.
--------------------------------------------------------------------------------
You can already use the basic ActiveRecord callbacks on the @Issue@ model, which include @before_destroy@ and @after_destroy@ callbacks. Please check the "Documentation":http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html for details on how to use them. You can register your own model callbacks by adding a simple declarative model patch in your plugin.
If you still do need those Redmine hooks, please describe in more detail how they can be useful to solve the problem in a way that the standard ActiveRecord callbacks can not.
--------------------------------------------------------------------------------