diff options
author | DeepBlueV7.X <nicolas.werner@hotmail.de> | 2023-10-26 09:57:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-26 09:57:47 +0200 |
commit | 1512810303a19073a0df32a38b76537660a03b3c (patch) | |
tree | a3ab747606a732e4d8f1614af21d9365b9786489 /src/timeline/TimelineModel.cpp | |
parent | Fix some qml warnings (diff) | |
parent | Add report message functionality (diff) | |
download | nheko-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.cpp | 8 |
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) { |