summary refs log tree commit diff
path: root/src/timeline/TimelineModel.cpp
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2023-10-26 09:57:47 +0200
committerGitHub <noreply@github.com>2023-10-26 09:57:47 +0200
commit1512810303a19073a0df32a38b76537660a03b3c (patch)
treea3ab747606a732e4d8f1614af21d9365b9786489 /src/timeline/TimelineModel.cpp
parentFix some qml warnings (diff)
parentAdd report message functionality (diff)
downloadnheko-1512810303a19073a0df32a38b76537660a03b3c.tar.xz
Merge pull request #1539 from Nheko-Reborn/issue1410
Add report message functionality
Diffstat (limited to 'src/timeline/TimelineModel.cpp')
-rw-r--r--src/timeline/TimelineModel.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/timeline/TimelineModel.cpp b/src/timeline/TimelineModel.cpp
index e8a0a507..aefdc860 100644
--- a/src/timeline/TimelineModel.cpp
+++ b/src/timeline/TimelineModel.cpp
@@ -1607,6 +1607,14 @@ TimelineModel::redactAllFromUser(const QString &userid, const QString &reason)
         std::this_thread::sleep_for(std::chrono::milliseconds(50));
     }
 }
+
+void
+TimelineModel::reportEvent(const QString &eventId, const QString &reason, const int score)
+{
+    http::client()->report_event(
+      room_id_.toStdString(), eventId.toStdString(), reason.toStdString(), score);
+}
+
 void
 TimelineModel::redactEvent(const QString &id, const QString &reason)
 {