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


#include "leaving.h"

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

using namespace QMatrixClient;

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

LeaveRoomJob::LeaveRoomJob(QString roomId)
    : BaseJob(HttpVerb::Post, "LeaveRoomJob",
        basePath % "/rooms/" % roomId % "/leave",
        Query { }
    )
{ }

ForgetRoomJob::ForgetRoomJob(QString roomId)
    : BaseJob(HttpVerb::Post, "ForgetRoomJob",
        basePath % "/rooms/" % roomId % "/forget",
        Query { }
    )
{ }