We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As in subject.
Example on defining labeler (as from docs):
datadog.event_subscriber.audit: class: 'DataDog\AuditBundle\EventSubscriber\AuditSubscriber' arguments: ["@security.token_storage"] tags: - { name: doctrine.event_subscriber, connection: default } calls: - ['setLabeler', [['\AppBundle\Labeler\AuditLabeler', 'getLabel']]]
debug:config sees config okay dump inside isEntityUnaudited proves the array of unaudited entities is empty.
The text was updated successfully, but these errors were encountered:
Quick fix is to define call manually, but it definitely needs to be worked on.
datadog.event_subscriber.audit: class: 'DataDog\AuditBundle\EventSubscriber\AuditSubscriber' arguments: ["@security.token_storage"] tags: - { name: doctrine.event_subscriber, connection: default } calls: - ['setLabeler', [['\AppBundle\Labeler\AuditLabeler', 'getLabel']]] - ['addAuditedEntities', [['AppBundle\Entity\Reservation', 'AppBundle\Entity\Tariff', 'AppBundle\Entity\Parking', 'AppBundle\Entity\User']]]
Sorry, something went wrong.
No branches or pull requests
As in subject.
Example on defining labeler (as from docs):
debug:config sees config okay
dump inside isEntityUnaudited proves the array of unaudited entities is empty.
The text was updated successfully, but these errors were encountered: