(ctx: OAuthReturnContext)
| 40 | } |
| 41 | |
| 42 | function dispatchCredentialUpdate(ctx: OAuthReturnContext) { |
| 43 | window.dispatchEvent( |
| 44 | new CustomEvent(OAUTH_CREDENTIAL_UPDATED_EVENT, { |
| 45 | detail: { providerId: ctx.providerId, workspaceId: ctx.workspaceId }, |
| 46 | }) |
| 47 | ) |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Post-OAuth router for the integrations page. |
no outgoing calls
no test coverage detected