From c94ad527ed94a4c1ca368dc8c8c59e490b907649 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Sat, 17 Nov 2018 19:50:34 +0900 Subject: User::isIgnored() --- lib/user.cpp | 5 +++++ lib/user.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/lib/user.cpp b/lib/user.cpp index bfd23ae2..eec41957 100644 --- a/lib/user.cpp +++ b/lib/user.cpp @@ -312,6 +312,11 @@ void User::unmarkIgnore() connection()->removeFromIgnoredUsers(this); } +bool User::isIgnored() const +{ + return connection()->isIgnored(this); +} + void User::Private::setAvatarOnServer(QString contentUri, User* q) { auto* j = connection->callApi(userId, contentUri); diff --git a/lib/user.h b/lib/user.h index 17f5625f..0023b44a 100644 --- a/lib/user.h +++ b/lib/user.h @@ -125,6 +125,8 @@ namespace QMatrixClient void ignore(); /** Remove the user from the ignore list */ void unmarkIgnore(); + /** Check whether the user is in ignore list */ + bool isIgnored() const; signals: void nameAboutToChange(QString newName, QString oldName, -- cgit v1.2.3