HIPAA logging and audit features for Meteor Apps built with Clinical UI.
====================================================
The HIPAA audit log is now split into two packages: one for the logging, and one for the UI. Please see clinical:hipaa-logger
for the logging portion.
meteor add clinical:hipaa-audit-log
meteor add clinical:hipaa-logger
====================================================
Navigate to the audit log via the default route:
Router.go('/audit');
====================================================
Three templates are provided by this package:
{{>hipaaAuditLog}}
{{>hipaaRibbon}}
{{>hipaaLogPage}}
====================================================
You can adjust the styling of the audit log through the configuration object. The following example shows how to style the audit log with Bootstrap controls.
HipaaAuditLog.configure({
classes: {
input: "form-control squee",
select: "form-control",
ribbon: ""
},
highlightColor: "#006289"
});
====================================================
// component API calls
reviewHipaaAuditLogPage()
hipaaLogEntryContains(rowIndex, hipaaEvent)
// actions
logHipaaEvent(hipaaEvent, timeout)
===========================
This package was made possible through generous support from Artaic Health and their NIH Small Business Innovation Research Grant.
====================================================