blob: 280545b0ceaa3e96cf85d7c3dbb742f1de1a51f8 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/******************************************************************************
* THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
*/
#pragma once
#include "jobs/basejob.h"
namespace Quotient
{
// Operations
/// Stop the requesting user participating in a particular room.
/*!
* This API stops a user participating in a particular room.
*
* If the user was already in the room, they will no longer be able to see
* new events in the room. If the room requires an invite to join, they
* will need to be re-invited before they can re-join.
*
* If the user was invited to the room, but had not joined, this call
* serves to reject the invite.
*
* The user will still be allowed to retrieve history from the room which
* they were previously allowed to see.
*/
class LeaveRoomJob : public BaseJob
{
public:
/*! Stop the requesting user participating in a particular room.
* \param roomId
* The room identifier to leave.
*/
explicit LeaveRoomJob(const QString& roomId);
/*! Construct a URL without creating a full-fledged job object
*
* This function can be used when a URL for
* LeaveRoomJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& roomId);
};
/// Stop the requesting user remembering about a particular room.
/*!
* This API stops a user remembering about a particular room.
*
* In general, history is a first class citizen in Matrix. After this API
* is called, however, a user will no longer be able to retrieve history
* for this room. If all users on a homeserver forget a room, the room is
* eligible for deletion from that homeserver.
*
* If the user is currently joined to the room, they must leave the room
* before calling this API.
*/
class ForgetRoomJob : public BaseJob
{
public:
/*! Stop the requesting user remembering about a particular room.
* \param roomId
* The room identifier to forget.
*/
explicit ForgetRoomJob(const QString& roomId);
/*! Construct a URL without creating a full-fledged job object
*
* This function can be used when a URL for
* ForgetRoomJob is necessary but the job
* itself isn't.
*/
static QUrl makeRequestUrl(QUrl baseUrl, const QString& roomId);
};
} // namespace Quotient
|