diff options
author | Carl Schwan <carl@carlschwan.eu> | 2021-02-26 18:05:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-26 18:05:02 +0100 |
commit | 337809639b5e9b3e78a4b33eafe0e1e3bb3288fc (patch) | |
tree | 2870a97b4d31a3b0af3f6711cb0efe1a1fc74055 /lib | |
parent | 382b08fc5ad9f22dacb2e6504869c42062565e7c (diff) | |
parent | 1335534aa71519ce55bee226ac67c1b0188f4b4b (diff) | |
download | libquotient-337809639b5e9b3e78a4b33eafe0e1e3bb3288fc.tar.gz libquotient-337809639b5e9b3e78a4b33eafe0e1e3bb3288fc.zip |
Merge pull request #457 from quotient-im/work/capability
Add public method to determine if we can change the user password
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connection.cpp | 8 | ||||
-rw-r--r-- | lib/connection.h | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/lib/connection.cpp b/lib/connection.cpp index d773f0d8..579c7920 100644 --- a/lib/connection.cpp +++ b/lib/connection.cpp @@ -1745,6 +1745,14 @@ QStringList Connection::stableRoomVersions() const return l; } +bool Connection::canChangePassword() const +{ + // By default assume we can + return d->capabilities.changePassword + ? d->capabilities.changePassword->enabled + : true; +} + inline bool roomVersionLess(const Connection::SupportedRoomVersion& v1, const Connection::SupportedRoomVersion& v2) { diff --git a/lib/connection.h b/lib/connection.h index 4f949641..0d22d01f 100644 --- a/lib/connection.h +++ b/lib/connection.h @@ -354,6 +354,11 @@ public: * \sa loadingCapabilities */ QVector<SupportedRoomVersion> availableRoomVersions() const; + /// Indicate if the user can change its password from the client. + /// This is often not the case when SSO is enabled. + /// \sa loadingCapabilities + bool canChangePassword() const; + /** * Call this before first sync to load from previously saved file. * |