I am trying to create a basic issue tracking system similar to Drupal's issue to tracking. I am keeping it similar as suggested here: https://drupal.stackexchange.com/questions/15366/bug-issue-tracker-for-d... .

I am trying to figure out how to edit a node such that any changes to the node's fields are automatically posted as a comment under the node.

For example take a look at this comment posted on an issue. When I edited the node and changed its Priority/Status fields, a comment was automatically posted to the node indicating the changes.

How can I build something similar?

Comments

VM’s picture

the issue tracker on drupal.org is a feature of the project module. To create something similar you're going to have to dig through project module code and create a custom module.