aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/kicking.cpp
blob: 2e6797d667e77debeabb2efe7c2a7e7f96829f83 (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
/******************************************************************************
 * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
 */


#include "kicking.h"

#include "jobs/converters.h"
#include <QtCore/QStringBuilder>

using namespace QMatrixClient;

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

KickJob::KickJob(QString roomId, QString user_id, QString reason)
    : BaseJob(HttpVerb::Post, "KickJob",
        basePath % "/rooms/" % roomId % "/kick",
        Query { },
        Data {
            { "user_id", toJson(user_id) },
            { "reason", toJson(reason) }
        }
    )
{ }