DamienHarper/auditor-bundle

The default ui can group related audit log entries by their transaction hash

aszenz opened this issue · 1 comments

I would like to see the default ui grouped by the transaction hash so that it can show what was inserted/updated alongside related associations/dissociation's in one single view, this is closer to how users think about the change since the entity is modified alongside it's relations in one single action.

Something like this:

  1. OrderEntity#1 has been updated by UserFoo
Attribute Old Value New Value
date 2022-05-01 2022-06-03
orderLines OrderLineEntity#1, OrderLineEntity#2 OrderLineEntity#1
  1. OrderEntity#1 has been inserted by UserFoo
Attribute Old Value New Value
date null 2022-05-01
orderLines null OrderLineEntity#1, OrderLineEntity#2, ....

@aszenz did you end up making something for this yourself that you are willing to share? would save a lot of time as I have the exact same request