refactor(core): Extract SAML requests payloads into DTOs (#12435)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2025-01-03 11:05:30 +01:00
committed by GitHub
parent 2241eef8cf
commit 552cff1860
29 changed files with 535 additions and 354 deletions

View File

@@ -209,8 +209,10 @@ export const setupTestServer = ({
break;
case 'saml':
const { setSamlLoginEnabled } = await import('@/sso.ee/saml/saml-helpers');
const { SamlService } = await import('@/sso.ee/saml/saml.service.ee');
await Container.get(SamlService).init();
await import('@/sso.ee/saml/routes/saml.controller.ee');
const { setSamlLoginEnabled } = await import('@/sso.ee/saml/saml-helpers');
await setSamlLoginEnabled(true);
break;