This commit is contained in:
Girish Ramakrishnan
2023-07-25 13:21:41 +05:30
parent ecc4d58bb2
commit be24ed64f8

View File

@@ -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;