aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/kicking.cpp
blob: 4f9d6580774fc9bed5eb0096a3f3ce6e1b70f9aa (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 "kicking.h"


#include "../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) }
         }
    )
{ }