aboutsummaryrefslogtreecommitdiff
path: root/jobs/generated/typing.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 11:40:46 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2017-12-07 12:49:07 +0900
commit879e0bd17abedcc93d005eb7b66f6e9aa762200a (patch)
tree451a8e9bb1e5f7ed3e5f172427d0302bec2ec2f6 /jobs/generated/typing.cpp
parent80588a782ce702384802e3e0cb469f71e5640ef4 (diff)
downloadlibquotient-879e0bd17abedcc93d005eb7b66f6e9aa762200a.tar.gz
libquotient-879e0bd17abedcc93d005eb7b66f6e9aa762200a.zip
New generated jobs for: room directory, 3PIDs, redactions, typing notifications and others
Closes #128 (the issue has the full list of jobs arriving herewith).
Diffstat (limited to 'jobs/generated/typing.cpp')
-rw-r--r--jobs/generated/typing.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/jobs/generated/typing.cpp b/jobs/generated/typing.cpp
new file mode 100644
index 00000000..44bbb131
--- /dev/null
+++ b/jobs/generated/typing.cpp
@@ -0,0 +1,27 @@
+/******************************************************************************
+ * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN
+ */
+
+
+#include "typing.h"
+
+#include "converters.h"
+
+#include <QtCore/QStringBuilder>
+
+using namespace QMatrixClient;
+
+static const auto basePath = QStringLiteral("/_matrix/client/r0");
+
+SetTypingJob::SetTypingJob(const QString& userId, const QString& roomId, bool typing, int timeout)
+ : BaseJob(HttpVerb::Put, "SetTypingJob",
+ basePath % "/rooms/" % roomId % "/typing/" % userId,
+ Query { }
+ )
+{
+ QJsonObject _data;
+ _data.insert("typing", toJson(typing));
+ _data.insert("timeout", toJson(timeout));
+ setRequestData(_data);
+}
+