diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-10-03 21:02:22 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-10-03 21:02:22 +0200 |
commit | bcae903921b81f578b0717e7376a45f9cafa16ad (patch) | |
tree | d5a2df68c4f2e8208c4f62142edbf7241fb198b9 /lib/csapi/threads_list.cpp | |
parent | 40b29069f55b551a67f4244c2b803b16e8287cd2 (diff) | |
download | libquotient-bcae903921b81f578b0717e7376a45f9cafa16ad.tar.gz libquotient-bcae903921b81f578b0717e7376a45f9cafa16ad.zip |
Regenerate API files from spec v1.4
Diffstat (limited to 'lib/csapi/threads_list.cpp')
-rw-r--r-- | lib/csapi/threads_list.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/csapi/threads_list.cpp b/lib/csapi/threads_list.cpp new file mode 100644 index 00000000..26924f24 --- /dev/null +++ b/lib/csapi/threads_list.cpp @@ -0,0 +1,37 @@ +/****************************************************************************** + * THIS FILE IS GENERATED - ANY EDITS WILL BE OVERWRITTEN + */ + +#include "threads_list.h" + +using namespace Quotient; + +auto queryToGetThreadRoots(const QString& include, Omittable<int> limit, + const QString& from) +{ + QUrlQuery _q; + addParam<IfNotEmpty>(_q, QStringLiteral("include"), include); + addParam<IfNotEmpty>(_q, QStringLiteral("limit"), limit); + addParam<IfNotEmpty>(_q, QStringLiteral("from"), from); + return _q; +} + +QUrl GetThreadRootsJob::makeRequestUrl(QUrl baseUrl, const QString& roomId, + const QString& include, + Omittable<int> limit, const QString& from) +{ + return BaseJob::makeRequestUrl(std::move(baseUrl), + makePath("/_matrix/client/v1", "/rooms/", + roomId, "/threads"), + queryToGetThreadRoots(include, limit, from)); +} + +GetThreadRootsJob::GetThreadRootsJob(const QString& roomId, + const QString& include, + Omittable<int> limit, const QString& from) + : BaseJob(HttpVerb::Get, QStringLiteral("GetThreadRootsJob"), + makePath("/_matrix/client/v1", "/rooms/", roomId, "/threads"), + queryToGetThreadRoots(include, limit, from)) +{ + addExpectedKey("chunk"); +} |