aboutsummaryrefslogtreecommitdiff
path: root/lib/jobs/generated/typing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/jobs/generated/typing.cpp')
-rw-r--r--lib/jobs/generated/typing.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/jobs/generated/typing.cpp b/lib/jobs/generated/typing.cpp
deleted file mode 100644
index fa700290..00000000
--- a/lib/jobs/generated/typing.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-/******************************************************************************
- * 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)
-{
- QJsonObject _data;
- _data.insert("typing", toJson(typing));
- _data.insert("timeout", toJson(timeout));
- setRequestData(_data);
-}
-