aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/account-data.cpp
blob: 5021c73a1eae83cf410b3a844a38e26680442b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/******************************************************************************
 * 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");

static const auto SetAccountDataJobName = QStringLiteral("SetAccountDataJob");

SetAccountDataJob::SetAccountDataJob(const QString& userId, const QString& type, const QJsonObject& content)
    : BaseJob(HttpVerb::Put, SetAccountDataJobName,
        basePath % "/user/" % userId % "/account_data/" % type)
{
    setRequestData(Data(toJson(content)));
}

static const auto SetAccountDataPerRoomJobName = QStringLiteral("SetAccountDataPerRoomJob");

SetAccountDataPerRoomJob::SetAccountDataPerRoomJob(const QString& userId, const QString& roomId, const QString& type, const QJsonObject& content)
    : BaseJob(HttpVerb::Put, SetAccountDataPerRoomJobName,
        basePath % "/user/" % userId % "/rooms/" % roomId % "/account_data/" % type)
{
    setRequestData(Data(toJson(content)));
}