Here's the current flow in my Rails App 1. User uses AJAX and creates a Photo record (stored in DB) 2. Then, the observer catches this and adds a record to the audit log
** That was all without a page refresh. The challenge I have now is that I need to have AJAX return a "news feed" item from the AuditLog created by the observer. It needs to be from the auditlog as I need the auditlog.id for that record.
Ideas? thanks