(id: string, clientId: string, clientSecret: string, issuer: string)
| 381 | } |
| 382 | |
| 383 | export const createAuthentikProvider = (id: string, clientId: string, clientSecret: string, issuer: string): Provider => { |
| 384 | return Authentik({ |
| 385 | id, |
| 386 | clientId: clientId, |
| 387 | clientSecret: clientSecret, |
| 388 | issuer: issuer, |
| 389 | allowDangerousEmailAccountLinking: env.AUTH_EE_ALLOW_EMAIL_ACCOUNT_LINKING === 'true', |
| 390 | }); |
| 391 | } |
| 392 | |
| 393 | const createJumpCloudProvider = (id: string, clientId: string, clientSecret: string, issuer: string): Provider => { |
| 394 | return { |
no outgoing calls
no test coverage detected