I am using paper_trail for audit trail. Along with create, update and delete events I want to track few custom events like view(record), sent(email) etc. How can we introduce such custom events while auditing a model?
Thanks, Amit Patel
|
I am using paper_trail for audit trail. Along with create, update and delete events I want to track few custom events like view(record), sent(email) etc. How can we introduce such custom events while auditing a model? Thanks, Amit Patel |
|||
|
|
|
See simple hit counter for page views in rails as an answer to the first part of your question. As for tracking sent mails, you may want to use Observer pattern. In any case all these events are outside of |
|||
|
|
I have found a tweak to add custom events in paper_trail managed Versions. Here is the tweak
May be this is not right solutions but it helped me to achieve the goal. I would explore paper_trail more to find obvious solution. Please keep posting your suggestions. Thanks, Amit Patel |
|||
|
|