aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/definitions/device_keys.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csapi/definitions/device_keys.cpp')
-rw-r--r--lib/csapi/definitions/device_keys.cpp15
1 files changed, 5 insertions, 10 deletions
diff --git a/lib/csapi/definitions/device_keys.cpp b/lib/csapi/definitions/device_keys.cpp
index ffe0cfbe..cc5262b7 100644
--- a/lib/csapi/definitions/device_keys.cpp
+++ b/lib/csapi/definitions/device_keys.cpp
@@ -4,29 +4,24 @@
#include "device_keys.h"
-
using namespace QMatrixClient;
-
-void JsonObjectConverter<DeviceKeys>::dumpTo(QJsonObject& jo, const DeviceKeys& pod)
+void JsonObjectConverter<DeviceKeys>::dumpTo(QJsonObject& jo,
+ const DeviceKeys& pod)
{
addParam<>(jo, QStringLiteral("user_id"), pod.userId);
addParam<>(jo, QStringLiteral("device_id"), pod.deviceId);
addParam<>(jo, QStringLiteral("algorithms"), pod.algorithms);
addParam<>(jo, QStringLiteral("keys"), pod.keys);
addParam<>(jo, QStringLiteral("signatures"), pod.signatures);
-
}
-
-void JsonObjectConverter<DeviceKeys>::fillFrom(const QJsonObject& jo, DeviceKeys& result)
+
+void JsonObjectConverter<DeviceKeys>::fillFrom(const QJsonObject& jo,
+ DeviceKeys& result)
{
fromJson(jo.value("user_id"_ls), result.userId);
fromJson(jo.value("device_id"_ls), result.deviceId);
fromJson(jo.value("algorithms"_ls), result.algorithms);
fromJson(jo.value("keys"_ls), result.keys);
fromJson(jo.value("signatures"_ls), result.signatures);
-
}
-
-
-