fix idp on started

This commit is contained in:
lendry
2026-06-24 16:53:06 +03:00
parent d16eccb4c2
commit e60d55f6bd
15 changed files with 709 additions and 52 deletions

View File

@@ -29,6 +29,7 @@ import { ChatService } from './domain/chat.service';
import { NotificationPublisherService } from './infra/notification-publisher.service';
import { MinioService } from './infra/minio.service';
import { LdapClientService } from './infra/ldap-client.service';
import { MessagingService } from './infra/messaging.service';
@Module({
imports: [
@@ -62,7 +63,8 @@ import { LdapClientService } from './infra/ldap-client.service';
ChatService,
NotificationPublisherService,
MinioService,
LdapClientService
LdapClientService,
MessagingService
]
})
export class AppModule {}