vouchedfor / audit-ui-bundle
UI for displaying Datadog audits in Symfony 2/3
Installs: 1 625
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 2
Open Issues: 1
Type:symfony-bundle
Requires
- data-dog/audit-bundle: ^0.1.5
- data-dog/pager-bundle: ^0.2.7
This package is not auto-updated.
Last update: 2025-03-29 23:10:39 UTC
README
This bundle creates a user interface for the audit log produced by https://github.com/DATA-DOG/DataDogAuditBundle.
It is based on the example provided by that bundle, but implemented in a more generic, out-of-the-box reusable way.
Installation
First, install it with composer:
composer require vouchedfor/audit-ui-bundle:dev-master
Then, add the following in your AppKernel bundles (note that 'new DataDog\AuditBundle\DataDogAuditBundle(),' may have been added previously).
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
...
new DataDog\AuditBundle\DataDogAuditBundle(), // Only add this if you haven't previously done so
new DataDog\PagerBundle\DataDogPagerBundle(),
new VouchedFor\AuditUiBundle\VouchedForAuditUiBundle(),
...
);
...
}
Add the name of the class responsible for managing users to config.yml
. The example below assumes it's AppBundle\Entity\User:
// app/config/config.yml
vouched_for_audit_ui:
user_class: AppBundle\Entity\User
Finally, add the routing (this assumes the route is prefixed with 'admin', that you'll probably want to protect behind a firewall in security.yml):
// app/config/routing.yml
vouchedfor_audit:
resource: "@VouchedForAuditUiBundle/Controller/DefaultController.php"
type: annotation
prefix: /admin
Usage
Navigate to admin/audit (assuming you've used the default routing above) to see the list of audited changes.
Overriding templates
Templates (e.g. diff.html.twig) can be overridden at app/Resources/VouchedForAuditUiBundle/views/Default
License
The Audit Ui Bundle is free to use and is licensed under the MIT license