aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/login.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/login.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/login.cpp')
-rw-r--r--lib/csapi/login.cpp22
1 files changed, 8 insertions, 14 deletions
diff --git a/lib/csapi/login.cpp b/lib/csapi/login.cpp
index 02730ff0..3e98f56b 100644
--- a/lib/csapi/login.cpp
+++ b/lib/csapi/login.cpp
@@ -13,12 +13,10 @@ using namespace Quotient;
static const auto basePath = QStringLiteral("/_matrix/client/r0");
// Converters
-namespace Quotient
-{
+namespace Quotient {
template <>
-struct JsonObjectConverter<GetLoginFlowsJob::LoginFlow>
-{
+struct JsonObjectConverter<GetLoginFlowsJob::LoginFlow> {
static void fillFrom(const QJsonObject& jo,
GetLoginFlowsJob::LoginFlow& result)
{
@@ -28,8 +26,7 @@ struct JsonObjectConverter<GetLoginFlowsJob::LoginFlow>
} // namespace Quotient
-class GetLoginFlowsJob::Private
-{
+class GetLoginFlowsJob::Private {
public:
QVector<LoginFlow> flows;
};
@@ -39,10 +36,9 @@ QUrl GetLoginFlowsJob::makeRequestUrl(QUrl baseUrl)
return BaseJob::makeRequestUrl(std::move(baseUrl), basePath % "/login");
}
-static const auto GetLoginFlowsJobName = QStringLiteral("GetLoginFlowsJob");
-
GetLoginFlowsJob::GetLoginFlowsJob()
- : BaseJob(HttpVerb::Get, GetLoginFlowsJobName, basePath % "/login", false)
+ : BaseJob(HttpVerb::Get, QStringLiteral("GetLoginFlowsJob"),
+ basePath % "/login", false)
, d(new Private)
{}
@@ -61,8 +57,7 @@ BaseJob::Status GetLoginFlowsJob::parseJson(const QJsonDocument& data)
return Success;
}
-class LoginJob::Private
-{
+class LoginJob::Private {
public:
QString userId;
QString accessToken;
@@ -71,15 +66,14 @@ public:
Omittable<DiscoveryInformation> wellKnown;
};
-static const auto LoginJobName = QStringLiteral("LoginJob");
-
LoginJob::LoginJob(const QString& type,
const Omittable<UserIdentifier>& identifier,
const QString& password, const QString& token,
const QString& deviceId,
const QString& initialDeviceDisplayName, const QString& user,
const QString& medium, const QString& address)
- : BaseJob(HttpVerb::Post, LoginJobName, basePath % "/login", false)
+ : BaseJob(HttpVerb::Post, QStringLiteral("LoginJob"), basePath % "/login",
+ false)
, d(new Private)
{
QJsonObject _data;