Added Event and Audit Logs services to services map.

This commit is contained in:
devaskim 2024-09-03 14:48:03 +05:00 committed by GitHub
parent bf845d9f34
commit 7433b15678
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,6 +50,8 @@ import { TenantService } from '@core/http/tenant.service';
import { TenantProfileService } from '@core/http/tenant-profile.service';
import { UiSettingsService } from '@core/http/ui-settings.service';
import { UsageInfoService } from '@core/http/usage-info.service';
import { EventService } from '@core/http/event.service';
import { AuditLogService } from '@core/http/audit-log.service';
export const ServicesMap = new Map<string, Type<any>>(
[
@ -87,6 +89,8 @@ export const ServicesMap = new Map<string, Type<any>>(
['userSettingsService', UserSettingsService],
['uiSettingsService', UiSettingsService],
['usageInfoService', UsageInfoService],
['notificationService', NotificationService]
['notificationService', NotificationService],
['eventService', EventService],
['auditLogService', AuditLogService]
]
);