aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/logout.cpp
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2022-10-06 19:27:24 +0200
committern-peugnet <n.peugnet@free.fr>2022-10-06 19:27:24 +0200
commitd911b207f49e936b3e992200796110f0749ed150 (patch)
tree96d20ebb4d074a4c1755e21cb316a52d584daee3 /lib/csapi/logout.cpp
parent8ad8a74152c5701b6ca1f9a00487ba9257a439b4 (diff)
parent56c2f2e2b809b9077393eb617828f33d144f5634 (diff)
downloadlibquotient-d911b207f49e936b3e992200796110f0749ed150.tar.gz
libquotient-d911b207f49e936b3e992200796110f0749ed150.zip
New upstream version 0.7.0
Diffstat (limited to 'lib/csapi/logout.cpp')
-rw-r--r--lib/csapi/logout.cpp33
1 files changed, 10 insertions, 23 deletions
diff --git a/lib/csapi/logout.cpp b/lib/csapi/logout.cpp
index 6e209e07..9ec54c71 100644
--- a/lib/csapi/logout.cpp
+++ b/lib/csapi/logout.cpp
@@ -4,39 +4,26 @@
#include "logout.h"
-#include "converters.h"
-
-#include <QtCore/QStringBuilder>
-
-using namespace QMatrixClient;
-
-static const auto basePath = QStringLiteral("/_matrix/client/r0");
+using namespace Quotient;
QUrl LogoutJob::makeRequestUrl(QUrl baseUrl)
{
return BaseJob::makeRequestUrl(std::move(baseUrl),
- basePath % "/logout");
+ makePath("/_matrix/client/v3", "/logout"));
}
-static const auto LogoutJobName = QStringLiteral("LogoutJob");
-
LogoutJob::LogoutJob()
- : BaseJob(HttpVerb::Post, LogoutJobName,
- basePath % "/logout")
-{
-}
+ : BaseJob(HttpVerb::Post, QStringLiteral("LogoutJob"),
+ makePath("/_matrix/client/v3", "/logout"))
+{}
QUrl LogoutAllJob::makeRequestUrl(QUrl baseUrl)
{
- return BaseJob::makeRequestUrl(std::move(baseUrl),
- basePath % "/logout/all");
+ return BaseJob::makeRequestUrl(
+ std::move(baseUrl), makePath("/_matrix/client/v3", "/logout/all"));
}
-static const auto LogoutAllJobName = QStringLiteral("LogoutAllJob");
-
LogoutAllJob::LogoutAllJob()
- : BaseJob(HttpVerb::Post, LogoutAllJobName,
- basePath % "/logout/all")
-{
-}
-
+ : BaseJob(HttpVerb::Post, QStringLiteral("LogoutAllJob"),
+ makePath("/_matrix/client/v3", "/logout/all"))
+{}