Skip to content

v0.2.0

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Sep 09:00
· 74 commits to main since this release
c1a2410

Added

  • Export class AuditLogService for extending in custom implementations as follows:
    const { AuditLogService } = require('@cap-js/audit-logging')
    class MyAuditLogService extends AuditLogService {
      async init() {
        [...]
        // call AuditLogService's init
        await super.init()
      }
    }
    module.exports = MyAuditLogService