aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/report_content.cpp
blob: 352f52c9ebca73f90bcc54bedc8dc554dd3c6769 (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
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */

#include "report_content.h"

#include "converters.h"

#include <QtCore/QStringBuilder>

using namespace Quotient;

static const auto basePath = QStringLiteral("/_matrix/client/r0");

static const auto ReportContentJobName = QStringLiteral("ReportContentJob");

ReportContentJob::ReportContentJob(const QString& roomId, const QString& eventId,
                                   int score, const QString& reason)
    : BaseJob(HttpVerb::Post, ReportContentJobName,
              basePath % "/rooms/" % roomId % "/report/" % eventId)
{
    QJsonObject _data;
    addParam<>(_data, QStringLiteral("score"), score);
    addParam<>(_data, QStringLiteral("reason"), reason);
    setRequestData(_data);
}