diff --git a/src/auditsource.js b/src/auditsource.js index d54d6d9f9..79b3cdcc6 100644 --- a/src/auditsource.js +++ b/src/auditsource.js @@ -14,11 +14,11 @@ class AuditSource { } // these can be static variables but see https://stackoverflow.com/questions/60046847/eslint-does-not-allow-static-class-properties#comment122122927_60464446 +AuditSource.APPTASK = new AuditSource('apptask'); AuditSource.CRON = new AuditSource('cron'); -AuditSource.HEALTH_MONITOR = new AuditSource('healthmonitor'); AuditSource.EXTERNAL_LDAP_TASK = new AuditSource('externalldap'); AuditSource.EXTERNAL_LDAP_AUTO_CREATE = new AuditSource('externalldap'); -AuditSource.APPTASK = new AuditSource('apptask'); +AuditSource.HEALTH_MONITOR = new AuditSource('healthmonitor'); AuditSource.PLATFORM = new AuditSource('platform'); exports = module.exports = AuditSource;