aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2021-01-15 07:59:55 +0100
committerKitsune Ral <Kitsune-Ral@users.sf.net>2021-01-15 07:59:55 +0100
commit7ce8513f65a21a02798447f745eb90290cb5a6fb (patch)
tree3034650d87f73e7a10f5cdc128ce74588627061c /lib
parent78cfde52d8f3ff04a07031a87a0c7218a3b0079f (diff)
downloadlibquotient-7ce8513f65a21a02798447f745eb90290cb5a6fb.tar.gz
libquotient-7ce8513f65a21a02798447f745eb90290cb5a6fb.zip
Drop a file deleted in master
Diffstat (limited to 'lib')
-rw-r--r--lib/jobs/postreadmarkersjob.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/lib/jobs/postreadmarkersjob.h b/lib/jobs/postreadmarkersjob.h
deleted file mode 100644
index ba965de9..00000000
--- a/lib/jobs/postreadmarkersjob.h
+++ /dev/null
@@ -1,26 +0,0 @@
-/******************************************************************************
- * SPDX-FileCopyrightText: 2017 Kitsune Ral <kitsune-ral@users.sf.net>
- *
- * SPDX-License-Identifier: LGPL-2.1-or-later
- */
-
-#pragma once
-
-#include "basejob.h"
-
-#include <QtCore/QJsonObject>
-
-using namespace Quotient;
-
-class PostReadMarkersJob : public BaseJob {
-public:
- explicit PostReadMarkersJob(const QString& roomId,
- const QString& readUpToEventId)
- : BaseJob(
- HttpVerb::Post, "PostReadMarkersJob",
- QStringLiteral("_matrix/client/r0/rooms/%1/read_markers").arg(roomId))
- {
- setRequestData(
- QJsonObject { { QStringLiteral("m.fully_read"), readUpToEventId } });
- }
-};