aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/keys.cpp
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-06-16 13:29:02 +0200
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-06-18 19:36:32 +0200
commit2dd85770cbfd6d9c7506757f25765c05ef74987d (patch)
tree5de167f66ee610ad01bca776897bd6c8183a66d7 /lib/csapi/keys.cpp
parent10867950474a360426685ad888237a5542b0cfac (diff)
downloadlibquotient-2dd85770cbfd6d9c7506757f25765c05ef74987d.tar.gz
libquotient-2dd85770cbfd6d9c7506757f25765c05ef74987d.zip
Regenerate API files upon the previous commit
Diffstat (limited to 'lib/csapi/keys.cpp')
-rw-r--r--lib/csapi/keys.cpp30
1 files changed, 16 insertions, 14 deletions
diff --git a/lib/csapi/keys.cpp b/lib/csapi/keys.cpp
index d4996664..2e4978f2 100644
--- a/lib/csapi/keys.cpp
+++ b/lib/csapi/keys.cpp
@@ -12,11 +12,13 @@ UploadKeysJob::UploadKeysJob(const Omittable<DeviceKeys>& deviceKeys,
: BaseJob(HttpVerb::Post, QStringLiteral("UploadKeysJob"),
makePath("/_matrix/client/v3", "/keys/upload"))
{
- QJsonObject _data;
- addParam<IfNotEmpty>(_data, QStringLiteral("device_keys"), deviceKeys);
- addParam<IfNotEmpty>(_data, QStringLiteral("one_time_keys"), oneTimeKeys);
- addParam<IfNotEmpty>(_data, QStringLiteral("fallback_keys"), fallbackKeys);
- setRequestData(std::move(_data));
+ QJsonObject _dataJson;
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("device_keys"), deviceKeys);
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("one_time_keys"),
+ oneTimeKeys);
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("fallback_keys"),
+ fallbackKeys);
+ setRequestData({ _dataJson });
addExpectedKey("one_time_key_counts");
}
@@ -25,11 +27,11 @@ QueryKeysJob::QueryKeysJob(const QHash<QString, QStringList>& deviceKeys,
: BaseJob(HttpVerb::Post, QStringLiteral("QueryKeysJob"),
makePath("/_matrix/client/v3", "/keys/query"))
{
- QJsonObject _data;
- addParam<IfNotEmpty>(_data, QStringLiteral("timeout"), timeout);
- addParam<>(_data, QStringLiteral("device_keys"), deviceKeys);
- addParam<IfNotEmpty>(_data, QStringLiteral("token"), token);
- setRequestData(std::move(_data));
+ QJsonObject _dataJson;
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("timeout"), timeout);
+ addParam<>(_dataJson, QStringLiteral("device_keys"), deviceKeys);
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("token"), token);
+ setRequestData({ _dataJson });
}
ClaimKeysJob::ClaimKeysJob(
@@ -38,10 +40,10 @@ ClaimKeysJob::ClaimKeysJob(
: BaseJob(HttpVerb::Post, QStringLiteral("ClaimKeysJob"),
makePath("/_matrix/client/v3", "/keys/claim"))
{
- QJsonObject _data;
- addParam<IfNotEmpty>(_data, QStringLiteral("timeout"), timeout);
- addParam<>(_data, QStringLiteral("one_time_keys"), oneTimeKeys);
- setRequestData(std::move(_data));
+ QJsonObject _dataJson;
+ addParam<IfNotEmpty>(_dataJson, QStringLiteral("timeout"), timeout);
+ addParam<>(_dataJson, QStringLiteral("one_time_keys"), oneTimeKeys);
+ setRequestData({ _dataJson });
addExpectedKey("one_time_keys");
}