(id: string, clientId: string, clientSecret: string, issuer: string)
| 270 | } |
| 271 | |
| 272 | const createKeycloakProvider = (id: string, clientId: string, clientSecret: string, issuer: string): Provider => { |
| 273 | return Keycloak({ |
| 274 | id, |
| 275 | clientId: clientId, |
| 276 | clientSecret: clientSecret, |
| 277 | issuer: issuer, |
| 278 | allowDangerousEmailAccountLinking: env.AUTH_EE_ALLOW_EMAIL_ACCOUNT_LINKING === 'true', |
| 279 | }); |
| 280 | } |
| 281 | |
| 282 | const createMicrosoftEntraIDProvider = (id: string, clientId: string, clientSecret: string, issuer: string): Provider => { |
| 283 | return MicrosoftEntraID({ |
no outgoing calls
no test coverage detected