(authType: string)
| 620 | } |
| 621 | |
| 622 | private handleSignOut(authType: string): void { |
| 623 | this.state.setState(this.getSignOutState()); |
| 624 | Clipper.getExtensionCommunicator().callRemoteFunction(Constants.FunctionKeys.signOutUser, { param: AuthType[authType] }); |
| 625 | |
| 626 | Clipper.logger.logUserFunnel(Log.Funnel.Label.SignOut); |
| 627 | Clipper.logger.logSessionEnd(Log.Session.EndTrigger.SignOut); |
| 628 | Clipper.logger.logSessionStart(); |
| 629 | } |
| 630 | |
| 631 | private getSignOutState(): ClipperState { |
| 632 | let signOutState = this.getResetState(); |
nothing calls this directly
no test coverage detected