Skip to content

Commit

Permalink
Regenerate API files
Browse files Browse the repository at this point in the history
  • Loading branch information
KitsuneRal committed Nov 18, 2024
1 parent 212f68a commit 755d275
Show file tree
Hide file tree
Showing 53 changed files with 143 additions and 143 deletions.
6 changes: 3 additions & 3 deletions Quotient/application-service/definitions/location.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ template <>
struct JsonObjectConverter<ThirdPartyLocation> {
static void dumpTo(QJsonObject& jo, const ThirdPartyLocation& pod)
{
addParam<>(jo, "alias"_L1, pod.alias);
addParam<>(jo, "protocol"_L1, pod.protocol);
addParam<>(jo, "fields"_L1, pod.fields);
addParam(jo, "alias"_L1, pod.alias);
addParam(jo, "protocol"_L1, pod.protocol);
addParam(jo, "fields"_L1, pod.fields);
}
static void fillFrom(const QJsonObject& jo, ThirdPartyLocation& pod)
{
Expand Down
20 changes: 10 additions & 10 deletions Quotient/application-service/definitions/protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ template <>
struct JsonObjectConverter<FieldType> {
static void dumpTo(QJsonObject& jo, const FieldType& pod)
{
addParam<>(jo, "regexp"_L1, pod.regexp);
addParam<>(jo, "placeholder"_L1, pod.placeholder);
addParam(jo, "regexp"_L1, pod.regexp);
addParam(jo, "placeholder"_L1, pod.placeholder);
}
static void fillFrom(const QJsonObject& jo, FieldType& pod)
{
Expand Down Expand Up @@ -49,9 +49,9 @@ template <>
struct JsonObjectConverter<ProtocolInstance> {
static void dumpTo(QJsonObject& jo, const ProtocolInstance& pod)
{
addParam<>(jo, "desc"_L1, pod.desc);
addParam<>(jo, "fields"_L1, pod.fields);
addParam<>(jo, "network_id"_L1, pod.networkId);
addParam(jo, "desc"_L1, pod.desc);
addParam(jo, "fields"_L1, pod.fields);
addParam(jo, "network_id"_L1, pod.networkId);
addParam<IfNotEmpty>(jo, "icon"_L1, pod.icon);
}
static void fillFrom(const QJsonObject& jo, ProtocolInstance& pod)
Expand Down Expand Up @@ -96,11 +96,11 @@ template <>
struct JsonObjectConverter<ThirdPartyProtocol> {
static void dumpTo(QJsonObject& jo, const ThirdPartyProtocol& pod)
{
addParam<>(jo, "user_fields"_L1, pod.userFields);
addParam<>(jo, "location_fields"_L1, pod.locationFields);
addParam<>(jo, "icon"_L1, pod.icon);
addParam<>(jo, "field_types"_L1, pod.fieldTypes);
addParam<>(jo, "instances"_L1, pod.instances);
addParam(jo, "user_fields"_L1, pod.userFields);
addParam(jo, "location_fields"_L1, pod.locationFields);
addParam(jo, "icon"_L1, pod.icon);
addParam(jo, "field_types"_L1, pod.fieldTypes);
addParam(jo, "instances"_L1, pod.instances);
}
static void fillFrom(const QJsonObject& jo, ThirdPartyProtocol& pod)
{
Expand Down
6 changes: 3 additions & 3 deletions Quotient/application-service/definitions/user.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ template <>
struct JsonObjectConverter<ThirdPartyUser> {
static void dumpTo(QJsonObject& jo, const ThirdPartyUser& pod)
{
addParam<>(jo, "userid"_L1, pod.userid);
addParam<>(jo, "protocol"_L1, pod.protocol);
addParam<>(jo, "fields"_L1, pod.fields);
addParam(jo, "userid"_L1, pod.userid);
addParam(jo, "protocol"_L1, pod.protocol);
addParam(jo, "fields"_L1, pod.fields);
}
static void fillFrom(const QJsonObject& jo, ThirdPartyUser& pod)
{
Expand Down
22 changes: 11 additions & 11 deletions Quotient/csapi/administrative_contact.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Post3PIDsJob::Post3PIDsJob(const ThreePidCredentials& threePidCreds)
: BaseJob(HttpVerb::Post, u"Post3PIDsJob"_s, makePath("/_matrix/client/v3", "/account/3pid"))
{
QJsonObject _dataJson;
addParam<>(_dataJson, "three_pid_creds"_L1, threePidCreds);
addParam(_dataJson, "three_pid_creds"_L1, threePidCreds);
setRequestData({ _dataJson });
}

Expand All @@ -28,8 +28,8 @@ Add3PIDJob::Add3PIDJob(const QString& clientSecret, const QString& sid,
{
QJsonObject _dataJson;
addParam<IfNotEmpty>(_dataJson, "auth"_L1, auth);
addParam<>(_dataJson, "client_secret"_L1, clientSecret);
addParam<>(_dataJson, "sid"_L1, sid);
addParam(_dataJson, "client_secret"_L1, clientSecret);
addParam(_dataJson, "sid"_L1, sid);
setRequestData({ _dataJson });
}

Expand All @@ -38,10 +38,10 @@ Bind3PIDJob::Bind3PIDJob(const QString& clientSecret, const QString& idServer,
: BaseJob(HttpVerb::Post, u"Bind3PIDJob"_s, makePath("/_matrix/client/v3", "/account/3pid/bind"))
{
QJsonObject _dataJson;
addParam<>(_dataJson, "client_secret"_L1, clientSecret);
addParam<>(_dataJson, "id_server"_L1, idServer);
addParam<>(_dataJson, "id_access_token"_L1, idAccessToken);
addParam<>(_dataJson, "sid"_L1, sid);
addParam(_dataJson, "client_secret"_L1, clientSecret);
addParam(_dataJson, "id_server"_L1, idServer);
addParam(_dataJson, "id_access_token"_L1, idAccessToken);
addParam(_dataJson, "sid"_L1, sid);
setRequestData({ _dataJson });
}

Expand All @@ -52,8 +52,8 @@ Delete3pidFromAccountJob::Delete3pidFromAccountJob(const QString& medium, const
{
QJsonObject _dataJson;
addParam<IfNotEmpty>(_dataJson, "id_server"_L1, idServer);
addParam<>(_dataJson, "medium"_L1, medium);
addParam<>(_dataJson, "address"_L1, address);
addParam(_dataJson, "medium"_L1, medium);
addParam(_dataJson, "address"_L1, address);
setRequestData({ _dataJson });
addExpectedKey(u"id_server_unbind_result"_s);
}
Expand All @@ -65,8 +65,8 @@ Unbind3pidFromAccountJob::Unbind3pidFromAccountJob(const QString& medium, const
{
QJsonObject _dataJson;
addParam<IfNotEmpty>(_dataJson, "id_server"_L1, idServer);
addParam<>(_dataJson, "medium"_L1, medium);
addParam<>(_dataJson, "address"_L1, address);
addParam(_dataJson, "medium"_L1, medium);
addParam(_dataJson, "address"_L1, address);
setRequestData({ _dataJson });
addExpectedKey(u"id_server_unbind_result"_s);
}
Expand Down
8 changes: 4 additions & 4 deletions Quotient/csapi/administrative_contact.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,10 @@ template <>
struct QUOTIENT_API JsonObjectConverter<Post3PIDsJob::ThreePidCredentials> {
static void dumpTo(QJsonObject& jo, const Post3PIDsJob::ThreePidCredentials& pod)
{
addParam<>(jo, "client_secret"_L1, pod.clientSecret);
addParam<>(jo, "id_server"_L1, pod.idServer);
addParam<>(jo, "id_access_token"_L1, pod.idAccessToken);
addParam<>(jo, "sid"_L1, pod.sid);
addParam(jo, "client_secret"_L1, pod.clientSecret);
addParam(jo, "id_server"_L1, pod.idServer);
addParam(jo, "id_access_token"_L1, pod.idAccessToken);
addParam(jo, "sid"_L1, pod.sid);
}
};
QT_WARNING_POP
Expand Down
2 changes: 1 addition & 1 deletion Quotient/csapi/appservice_room_directory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ UpdateAppserviceRoomDirectoryVisibilityJob::UpdateAppserviceRoomDirectoryVisibil
false)
{
QJsonObject _dataJson;
addParam<>(_dataJson, "visibility"_L1, visibility);
addParam(_dataJson, "visibility"_L1, visibility);
setRequestData({ _dataJson });
}
6 changes: 3 additions & 3 deletions Quotient/csapi/authed-content-repo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ auto queryToGetContentThumbnailAuthed(int width, int height, const QString& meth
qint64 timeoutMs, std::optional<bool> animated)
{
QUrlQuery _q;
addParam<>(_q, u"width"_s, width);
addParam<>(_q, u"height"_s, height);
addParam(_q, u"width"_s, width);
addParam(_q, u"height"_s, height);
addParam<IfNotEmpty>(_q, u"method"_s, method);
addParam<IfNotEmpty>(_q, u"timeout_ms"_s, timeoutMs);
addParam<IfNotEmpty>(_q, u"animated"_s, animated);
Expand Down Expand Up @@ -96,7 +96,7 @@ GetContentThumbnailAuthedJob::GetContentThumbnailAuthedJob(const QString& server
auto queryToGetUrlPreviewAuthed(const QUrl& url, std::optional<qint64> ts)
{
QUrlQuery _q;
addParam<>(_q, u"url"_s, url);
addParam(_q, u"url"_s, url);
addParam<IfNotEmpty>(_q, u"ts"_s, ts);
return _q;
}
Expand Down
4 changes: 2 additions & 2 deletions Quotient/csapi/banning.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ BanJob::BanJob(const QString& roomId, const QString& userId, const QString& reas
: BaseJob(HttpVerb::Post, u"BanJob"_s, makePath("/_matrix/client/v3", "/rooms/", roomId, "/ban"))
{
QJsonObject _dataJson;
addParam<>(_dataJson, "user_id"_L1, userId);
addParam(_dataJson, "user_id"_L1, userId);
addParam<IfNotEmpty>(_dataJson, "reason"_L1, reason);
setRequestData({ _dataJson });
}
Expand All @@ -18,7 +18,7 @@ UnbanJob::UnbanJob(const QString& roomId, const QString& userId, const QString&
makePath("/_matrix/client/v3", "/rooms/", roomId, "/unban"))
{
QJsonObject _dataJson;
addParam<>(_dataJson, "user_id"_L1, userId);
addParam(_dataJson, "user_id"_L1, userId);
addParam<IfNotEmpty>(_dataJson, "reason"_L1, reason);
setRequestData({ _dataJson });
}
2 changes: 1 addition & 1 deletion Quotient/csapi/capabilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ template <>
struct JsonObjectConverter<BooleanCapability> {
static void dumpTo(QJsonObject& jo, const BooleanCapability& pod)
{
addParam<>(jo, "enabled"_L1, pod.enabled);
addParam(jo, "enabled"_L1, pod.enabled);
}
static void fillFrom(const QJsonObject& jo, BooleanCapability& pod)
{
Expand Down
6 changes: 3 additions & 3 deletions Quotient/csapi/content-repo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ auto queryToGetContentThumbnail(int width, int height, const QString& method, bo
qint64 timeoutMs, bool allowRedirect, std::optional<bool> animated)
{
QUrlQuery _q;
addParam<>(_q, u"width"_s, width);
addParam<>(_q, u"height"_s, height);
addParam(_q, u"width"_s, width);
addParam(_q, u"height"_s, height);
addParam<IfNotEmpty>(_q, u"method"_s, method);
addParam<IfNotEmpty>(_q, u"allow_remote"_s, allowRemote);
addParam<IfNotEmpty>(_q, u"timeout_ms"_s, timeoutMs);
Expand Down Expand Up @@ -151,7 +151,7 @@ GetContentThumbnailJob::GetContentThumbnailJob(const QString& serverName, const
auto queryToGetUrlPreview(const QUrl& url, std::optional<qint64> ts)
{
QUrlQuery _q;
addParam<>(_q, u"url"_s, url);
addParam(_q, u"url"_s, url);
addParam<IfNotEmpty>(_q, u"ts"_s, ts);
return _q;
}
Expand Down
12 changes: 6 additions & 6 deletions Quotient/csapi/create_room.h
Original file line number Diff line number Diff line change
Expand Up @@ -186,19 +186,19 @@ template <>
struct QUOTIENT_API JsonObjectConverter<CreateRoomJob::Invite3pid> {
static void dumpTo(QJsonObject& jo, const CreateRoomJob::Invite3pid& pod)
{
addParam<>(jo, "id_server"_L1, pod.idServer);
addParam<>(jo, "id_access_token"_L1, pod.idAccessToken);
addParam<>(jo, "medium"_L1, pod.medium);
addParam<>(jo, "address"_L1, pod.address);
addParam(jo, "id_server"_L1, pod.idServer);
addParam(jo, "id_access_token"_L1, pod.idAccessToken);
addParam(jo, "medium"_L1, pod.medium);
addParam(jo, "address"_L1, pod.address);
}
};

template <>
struct QUOTIENT_API JsonObjectConverter<CreateRoomJob::StateEvent> {
static void dumpTo(QJsonObject& jo, const CreateRoomJob::StateEvent& pod)
{
addParam<>(jo, "type"_L1, pod.type);
addParam<>(jo, "content"_L1, pod.content);
addParam(jo, "type"_L1, pod.type);
addParam(jo, "content"_L1, pod.content);
addParam<IfNotEmpty>(jo, "state_key"_L1, pod.stateKey);
}
};
Expand Down
2 changes: 1 addition & 1 deletion Quotient/csapi/definitions/client_device.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ template <>
struct JsonObjectConverter<Device> {
static void dumpTo(QJsonObject& jo, const Device& pod)
{
addParam<>(jo, "device_id"_L1, pod.deviceId);
addParam(jo, "device_id"_L1, pod.deviceId);
addParam<IfNotEmpty>(jo, "display_name"_L1, pod.displayName);
addParam<IfNotEmpty>(jo, "last_seen_ip"_L1, pod.lastSeenIp);
addParam<IfNotEmpty>(jo, "last_seen_ts"_L1, pod.lastSeenTs);
Expand Down
6 changes: 3 additions & 3 deletions Quotient/csapi/definitions/cross_signing_key.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ template <>
struct JsonObjectConverter<CrossSigningKey> {
static void dumpTo(QJsonObject& jo, const CrossSigningKey& pod)
{
addParam<>(jo, "user_id"_L1, pod.userId);
addParam<>(jo, "usage"_L1, pod.usage);
addParam<>(jo, "keys"_L1, pod.keys);
addParam(jo, "user_id"_L1, pod.userId);
addParam(jo, "usage"_L1, pod.usage);
addParam(jo, "keys"_L1, pod.keys);
addParam<IfNotEmpty>(jo, "signatures"_L1, pod.signatures);
}
static void fillFrom(const QJsonObject& jo, CrossSigningKey& pod)
Expand Down
10 changes: 5 additions & 5 deletions Quotient/csapi/definitions/device_keys.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ template <>
struct JsonObjectConverter<DeviceKeys> {
static void dumpTo(QJsonObject& jo, const DeviceKeys& pod)
{
addParam<>(jo, "user_id"_L1, pod.userId);
addParam<>(jo, "device_id"_L1, pod.deviceId);
addParam<>(jo, "algorithms"_L1, pod.algorithms);
addParam<>(jo, "keys"_L1, pod.keys);
addParam<>(jo, "signatures"_L1, pod.signatures);
addParam(jo, "user_id"_L1, pod.userId);
addParam(jo, "device_id"_L1, pod.deviceId);
addParam(jo, "algorithms"_L1, pod.algorithms);
addParam(jo, "keys"_L1, pod.keys);
addParam(jo, "signatures"_L1, pod.signatures);
}
static void fillFrom(const QJsonObject& jo, DeviceKeys& pod)
{
Expand Down
8 changes: 4 additions & 4 deletions Quotient/csapi/definitions/key_backup_data.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ template <>
struct JsonObjectConverter<KeyBackupData> {
static void dumpTo(QJsonObject& jo, const KeyBackupData& pod)
{
addParam<>(jo, "first_message_index"_L1, pod.firstMessageIndex);
addParam<>(jo, "forwarded_count"_L1, pod.forwardedCount);
addParam<>(jo, "is_verified"_L1, pod.isVerified);
addParam<>(jo, "session_data"_L1, pod.sessionData);
addParam(jo, "first_message_index"_L1, pod.firstMessageIndex);
addParam(jo, "forwarded_count"_L1, pod.forwardedCount);
addParam(jo, "is_verified"_L1, pod.isVerified);
addParam(jo, "session_data"_L1, pod.sessionData);
}
static void fillFrom(const QJsonObject& jo, KeyBackupData& pod)
{
Expand Down
8 changes: 4 additions & 4 deletions Quotient/csapi/definitions/openid_token.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ template <>
struct JsonObjectConverter<OpenIdCredentials> {
static void dumpTo(QJsonObject& jo, const OpenIdCredentials& pod)
{
addParam<>(jo, "access_token"_L1, pod.accessToken);
addParam<>(jo, "token_type"_L1, pod.tokenType);
addParam<>(jo, "matrix_server_name"_L1, pod.matrixServerName);
addParam<>(jo, "expires_in"_L1, pod.expiresIn);
addParam(jo, "access_token"_L1, pod.accessToken);
addParam(jo, "token_type"_L1, pod.tokenType);
addParam(jo, "matrix_server_name"_L1, pod.matrixServerName);
addParam(jo, "expires_in"_L1, pod.expiresIn);
}
static void fillFrom(const QJsonObject& jo, OpenIdCredentials& pod)
{
Expand Down
8 changes: 4 additions & 4 deletions Quotient/csapi/definitions/public_rooms_response.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ template <>
struct JsonObjectConverter<PublicRoomsChunk> {
static void dumpTo(QJsonObject& jo, const PublicRoomsChunk& pod)
{
addParam<>(jo, "num_joined_members"_L1, pod.numJoinedMembers);
addParam<>(jo, "room_id"_L1, pod.roomId);
addParam<>(jo, "world_readable"_L1, pod.worldReadable);
addParam<>(jo, "guest_can_join"_L1, pod.guestCanJoin);
addParam(jo, "num_joined_members"_L1, pod.numJoinedMembers);
addParam(jo, "room_id"_L1, pod.roomId);
addParam(jo, "world_readable"_L1, pod.worldReadable);
addParam(jo, "guest_can_join"_L1, pod.guestCanJoin);
addParam<IfNotEmpty>(jo, "canonical_alias"_L1, pod.canonicalAlias);
addParam<IfNotEmpty>(jo, "name"_L1, pod.name);
addParam<IfNotEmpty>(jo, "topic"_L1, pod.topic);
Expand Down
2 changes: 1 addition & 1 deletion Quotient/csapi/definitions/push_condition.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ template <>
struct JsonObjectConverter<PushCondition> {
static void dumpTo(QJsonObject& jo, const PushCondition& pod)
{
addParam<>(jo, "kind"_L1, pod.kind);
addParam(jo, "kind"_L1, pod.kind);
addParam<IfNotEmpty>(jo, "key"_L1, pod.key);
addParam<IfNotEmpty>(jo, "pattern"_L1, pod.pattern);
addParam<IfNotEmpty>(jo, "is"_L1, pod.is);
Expand Down
8 changes: 4 additions & 4 deletions Quotient/csapi/definitions/push_rule.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ template <>
struct JsonObjectConverter<PushRule> {
static void dumpTo(QJsonObject& jo, const PushRule& pod)
{
addParam<>(jo, "actions"_L1, pod.actions);
addParam<>(jo, "default"_L1, pod.isDefault);
addParam<>(jo, "enabled"_L1, pod.enabled);
addParam<>(jo, "rule_id"_L1, pod.ruleId);
addParam(jo, "actions"_L1, pod.actions);
addParam(jo, "default"_L1, pod.isDefault);
addParam(jo, "enabled"_L1, pod.enabled);
addParam(jo, "rule_id"_L1, pod.ruleId);
addParam<IfNotEmpty>(jo, "conditions"_L1, pod.conditions);
addParam<IfNotEmpty>(jo, "pattern"_L1, pod.pattern);
}
Expand Down
6 changes: 3 additions & 3 deletions Quotient/csapi/definitions/request_email_validation.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ template <>
struct JsonObjectConverter<EmailValidationData> {
static void dumpTo(QJsonObject& jo, const EmailValidationData& pod)
{
addParam<>(jo, "client_secret"_L1, pod.clientSecret);
addParam<>(jo, "email"_L1, pod.email);
addParam<>(jo, "send_attempt"_L1, pod.sendAttempt);
addParam(jo, "client_secret"_L1, pod.clientSecret);
addParam(jo, "email"_L1, pod.email);
addParam(jo, "send_attempt"_L1, pod.sendAttempt);
addParam<IfNotEmpty>(jo, "next_link"_L1, pod.nextLink);
addParam<IfNotEmpty>(jo, "id_server"_L1, pod.idServer);
addParam<IfNotEmpty>(jo, "id_access_token"_L1, pod.idAccessToken);
Expand Down
8 changes: 4 additions & 4 deletions Quotient/csapi/definitions/request_msisdn_validation.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ template <>
struct JsonObjectConverter<MsisdnValidationData> {
static void dumpTo(QJsonObject& jo, const MsisdnValidationData& pod)
{
addParam<>(jo, "client_secret"_L1, pod.clientSecret);
addParam<>(jo, "country"_L1, pod.country);
addParam<>(jo, "phone_number"_L1, pod.phoneNumber);
addParam<>(jo, "send_attempt"_L1, pod.sendAttempt);
addParam(jo, "client_secret"_L1, pod.clientSecret);
addParam(jo, "country"_L1, pod.country);
addParam(jo, "phone_number"_L1, pod.phoneNumber);
addParam(jo, "send_attempt"_L1, pod.sendAttempt);
addParam<IfNotEmpty>(jo, "next_link"_L1, pod.nextLink);
addParam<IfNotEmpty>(jo, "id_server"_L1, pod.idServer);
addParam<IfNotEmpty>(jo, "id_access_token"_L1, pod.idAccessToken);
Expand Down
2 changes: 1 addition & 1 deletion Quotient/csapi/definitions/request_token_response.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ template <>
struct JsonObjectConverter<RequestTokenResponse> {
static void dumpTo(QJsonObject& jo, const RequestTokenResponse& pod)
{
addParam<>(jo, "sid"_L1, pod.sid);
addParam(jo, "sid"_L1, pod.sid);
addParam<IfNotEmpty>(jo, "submit_url"_L1, pod.submitUrl);
}
static void fillFrom(const QJsonObject& jo, RequestTokenResponse& pod)
Expand Down
2 changes: 1 addition & 1 deletion Quotient/csapi/definitions/room_key_backup.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ template <>
struct JsonObjectConverter<RoomKeyBackup> {
static void dumpTo(QJsonObject& jo, const RoomKeyBackup& pod)
{
addParam<>(jo, "sessions"_L1, pod.sessions);
addParam(jo, "sessions"_L1, pod.sessions);
}
static void fillFrom(const QJsonObject& jo, RoomKeyBackup& pod)
{
Expand Down
Loading

0 comments on commit 755d275

Please sign in to comment.