| 8150 | } |
| 8151 | |
| 8152 | AsyncResult* NoteStore::authenticateToSharedNotebookAsync(QString shareKey, QString authenticationToken) |
| 8153 | { |
| 8154 | if(authenticationToken.isEmpty()) authenticationToken = this->authenticationToken_; |
| 8155 | QByteArray params = NoteStore_authenticateToSharedNotebook_prepareParams(shareKey, authenticationToken); |
| 8156 | return new AsyncResult(url_, params, NoteStore_authenticateToSharedNotebook_readReplyAsync); |
| 8157 | } |
| 8158 | |
| 8159 | QByteArray NoteStore_getSharedNotebookByAuth_prepareParams(QString authenticationToken) |
| 8160 | { |
nothing calls this directly
no test coverage detected