aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/notifications.cpp
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2020-04-17 07:42:13 +0200
committerKitsune Ral <Kitsune-Ral@users.sf.net>2020-04-17 07:49:41 +0200
commit7036ed0dcb137cb5cbb6b426dd338c5e2e4c6424 (patch)
treefa9e37d8874303bf56d5381b0844738bd516a79b /lib/csapi/notifications.cpp
parent906699cc525e9e0be231a58cabffc31ad1f5193c (diff)
downloadlibquotient-7036ed0dcb137cb5cbb6b426dd338c5e2e4c6424.tar.gz
libquotient-7036ed0dcb137cb5cbb6b426dd338c5e2e4c6424.zip
Regenerate API files using new GTAD and refreshed templates
No functional changes.
Diffstat (limited to 'lib/csapi/notifications.cpp')
-rw-r--r--lib/csapi/notifications.cpp14
1 files changed, 4 insertions, 10 deletions
diff --git a/lib/csapi/notifications.cpp b/lib/csapi/notifications.cpp
index da568a0f..d00d5425 100644
--- a/lib/csapi/notifications.cpp
+++ b/lib/csapi/notifications.cpp
@@ -13,12 +13,10 @@ using namespace Quotient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
// Converters
-namespace Quotient
-{
+namespace Quotient {
template <>
-struct JsonObjectConverter<GetNotificationsJob::Notification>
-{
+struct JsonObjectConverter<GetNotificationsJob::Notification> {
static void fillFrom(const QJsonObject& jo,
GetNotificationsJob::Notification& result)
{
@@ -33,8 +31,7 @@ struct JsonObjectConverter<GetNotificationsJob::Notification>
} // namespace Quotient
-class GetNotificationsJob::Private
-{
+class GetNotificationsJob::Private {
public:
QString nextToken;
std::vector<Notification> notifications;
@@ -59,13 +56,10 @@ QUrl GetNotificationsJob::makeRequestUrl(QUrl baseUrl, const QString& from,
queryToGetNotifications(from, limit, only));
}
-static const auto GetNotificationsJobName =
- QStringLiteral("GetNotificationsJob");
-
GetNotificationsJob::GetNotificationsJob(const QString& from,
Omittable<int> limit,
const QString& only)
- : BaseJob(HttpVerb::Get, GetNotificationsJobName,
+ : BaseJob(HttpVerb::Get, QStringLiteral("GetNotificationsJob"),
basePath % "/notifications",
queryToGetNotifications(from, limit, only))
, d(new Private)