@iconsolutions/audit
Getting Started
To begin using the library simply run npm i @iconsolutions/audit in whatever angular app you need to use the library in.
You will need to add the following to the app routing module:
{
path: 'audit',
canActivate: [roleGuard],
data: { roles: ['ROLE_AUDIT'] },
loadChildren: () => import('@iconsolutions/audit').then((m) => m.AuditModule)
}