diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-05 18:25:13 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-03-05 18:25:13 +0900 |
commit | 658f79dc57a2528878cf29ba3f69095b9e6d18e5 (patch) | |
tree | 25c06c7d52a197c145116db8c5e06487e963fc16 /jobs/generated/account-data.cpp | |
parent | 089a23093dd8e73b4e1e5b1a2aa3935028066faa (diff) | |
parent | 2e7627528308da7629f1293757de2fb4bb22a7ad (diff) | |
download | libquotient-658f79dc57a2528878cf29ba3f69095b9e6d18e5.tar.gz libquotient-658f79dc57a2528878cf29ba3f69095b9e6d18e5.zip |
Merge branch 'kitsune-save-room-tags'
Diffstat (limited to 'jobs/generated/account-data.cpp')
-rw-r--r-- | jobs/generated/account-data.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/jobs/generated/account-data.cpp b/jobs/generated/account-data.cpp new file mode 100644 index 00000000..35ee94c0 --- /dev/null +++ b/jobs/generated/account-data.cpp @@ -0,0 +1,28 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#include "account-data.h" + +#include "converters.h" + +#include <QtCore/QStringBuilder> + +using namespace QMatrixClient; + +static const auto basePath = QStringLiteral("/_matrix/client/r0"); + +SetAccountDataJob::SetAccountDataJob(const QString& userId, const QString& type, const QJsonObject& content) + : BaseJob(HttpVerb::Put, "SetAccountDataJob", + basePath % "/user/" % userId % "/account_data/" % type) +{ + setRequestData(Data(content)); +} + +SetAccountDataPerRoomJob::SetAccountDataPerRoomJob(const QString& userId, const QString& roomId, const QString& type, const QJsonObject& content) + : BaseJob(HttpVerb::Put, "SetAccountDataPerRoomJob", + basePath % "/user/" % userId % "/rooms/" % roomId % "/account_data/" % type) +{ + setRequestData(Data(content)); +} + |