From 21fd088d207ee2c2724c5b250875a843b618497d Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Fri, 6 Nov 2020 14:11:49 +0100 Subject: ChangePasswordJob: logoutDevices doesn't need Omittable This is generated by GTAD 0.7.1 (to be released), based on the changed registration.yaml (to be committed and pulled). --- lib/csapi/registration.cpp | 2 +- lib/csapi/registration.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/csapi') diff --git a/lib/csapi/registration.cpp b/lib/csapi/registration.cpp index b80abc84..33f61265 100644 --- a/lib/csapi/registration.cpp +++ b/lib/csapi/registration.cpp @@ -58,7 +58,7 @@ RequestTokenToRegisterMSISDNJob::RequestTokenToRegisterMSISDNJob( } ChangePasswordJob::ChangePasswordJob(const QString& newPassword, - Omittable logoutDevices, + bool logoutDevices, const Omittable& auth) : BaseJob(HttpVerb::Post, QStringLiteral("ChangePasswordJob"), QStringLiteral("/_matrix/client/r0") % "/account/password") diff --git a/lib/csapi/registration.h b/lib/csapi/registration.h index 62bc35f1..6864fd47 100644 --- a/lib/csapi/registration.h +++ b/lib/csapi/registration.h @@ -222,7 +222,7 @@ public: * * \param logoutDevices * Whether the user's other access tokens, and their associated devices, - * should be revoked if the request succeeds. Defaults to true. + * should be revoked if the request succeeds. * * When ``false``, the server can still take advantage of `the soft logout * method <#soft-logout>`_ for the user's remaining devices. @@ -232,7 +232,7 @@ public: * authentication API. */ explicit ChangePasswordJob(const QString& newPassword, - Omittable logoutDevices = none, + bool logoutDevices = true, const Omittable& auth = none); }; -- cgit v1.2.3