Project

General

Profile

Actions

Patch #29378

open

More call_hooks for projects, issue statusses, time entries, etc.

Added by Jonas Ineveld, van over 5 years ago. Updated over 5 years ago.

Status:
Needs feedback
Priority:
Normal
Assignee:
-
Category:
Hook requests
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:

Description

Currently there are only functional call_hooks for issues, and with that, i mean the 'controller_issues_edit_after_save' etc.
Because i'm working on a seperate app, connected with redmine on the backend, i need more hooks to hook my 'update API' to.

For now i've created the call_hooks for creation of a project, and for the deletion of a issue.

Would it be something if these changes would go back into core? I can imagine more uses for these type of hooks.

Svn patch file is included


Files

Actions #1

Updated by Go MAEDA over 5 years ago

  • Tracker changed from Defect to Patch
Actions #2

Updated by Holger Just over 5 years ago

Do you strictly need these controller hooks to distinguish updates done by the controller from other updates?

Most of the time, people are interested in e.g. any update of wiki pages or projects. Here, it is already possible to use Active Record callbacks on the models which don't require callbacks in the controller in all places that could touch these models. See https://guides.rubyonrails.org/active_record_callbacks.html for details. You could e.g. register a new hook for after_save (or after_update) or the Project model or an after_destroy hook of the Issue model.

Since these hooks are on a model level, you won't have access to the controller params though.

Actions #3

Updated by Holger Just over 5 years ago

  • Status changed from New to Needs feedback
Actions

Also available in: Atom PDF