( code: string | null, state: string | null, organizationId?: string | null, providerModel?: string | null, )
| 242 | } |
| 243 | |
| 244 | public async handleAuthCallback( |
| 245 | code: string | null, |
| 246 | state: string | null, |
| 247 | organizationId?: string | null, |
| 248 | providerModel?: string | null, |
| 249 | ): Promise<void> { |
| 250 | this.ensureInitialized() |
| 251 | return this.authService!.handleCallback(code, state, organizationId, providerModel) |
| 252 | } |
| 253 | |
| 254 | public async switchOrganization(organizationId: string | null): Promise<void> { |
| 255 | this.ensureInitialized() |
no test coverage detected