| 19 | } |
| 20 | |
| 21 | interface EntraConfig { |
| 22 | teamspaceId: string; |
| 23 | tenantId: string; |
| 24 | requiredScope: string | null; |
| 25 | } |
| 26 | |
| 27 | const CONFIG_TTL_MS = 5 * 60 * 1000; |
| 28 | const configByAudience = new Map<string, { value: EntraConfig | null; expiresAt: number }>(); |
nothing calls this directly
no outgoing calls
no test coverage detected