| 9355 | } |
| 9356 | |
| 9357 | AsyncResult* UserStore::completeTwoFactorAuthenticationAsync(QString oneTimeCode, QString deviceIdentifier, QString deviceDescription, QString authenticationToken) |
| 9358 | { |
| 9359 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 9360 | QByteArray params = UserStore_completeTwoFactorAuthentication_prepareParams(authenticationToken, oneTimeCode, deviceIdentifier, deviceDescription); |
| 9361 | return new AsyncResult(url_, params, UserStore_completeTwoFactorAuthentication_readReplyAsync); |
| 9362 | } |
| 9363 | |
| 9364 | QByteArray UserStore_revokeLongSession_prepareParams(QString authenticationToken) |
| 9365 | { |
nothing calls this directly
no test coverage detected