diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-09-24 19:20:10 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-09-29 21:59:39 +0900 |
commit | 4244cee8d5e0f760cccd2b45ad587670573ef03c (patch) | |
tree | 4806108543f1402247e6cce1dba987a98d6fe83b /lib/csapi/administrative_contact.h | |
parent | f5c2e47fa1ab84fdaffe03c30ba973d7dea5ac05 (diff) | |
download | libquotient-4244cee8d5e0f760cccd2b45ad587670573ef03c.tar.gz libquotient-4244cee8d5e0f760cccd2b45ad587670573ef03c.zip |
Prepare for CS API 0.4.0
This commit consists of two parts: upgrading the API infrastructure and trivial but sweeping update to the generated files.
1. The API infrastructure (converters.h, *.mustache and some other non-generated files) now can deal with top-level JSON arrays and response inlining; better supports property maps; and gets some formatting fixes in generated code.
2. Generated files now use QJsonValue instead of QJsonObject as a default type
to (un)marshall Matrix API data structures, to match the change in the infrastructure above
This commit is still using the old Matrix API definitions, before CS API 0.4.0. Getting to CS API 0.4.0 will come next.
Diffstat (limited to 'lib/csapi/administrative_contact.h')
-rw-r--r-- | lib/csapi/administrative_contact.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/csapi/administrative_contact.h b/lib/csapi/administrative_contact.h index 112b81cc..53123e7a 100644 --- a/lib/csapi/administrative_contact.h +++ b/lib/csapi/administrative_contact.h @@ -14,7 +14,7 @@ namespace QMatrixClient // Operations /// Gets a list of a user's third party identifiers. - /// + /// /// Gets a list of the third party identifiers that the homeserver has /// associated with the user's account. /// @@ -79,7 +79,7 @@ namespace QMatrixClient }; /// Adds contact information to the user's account. - /// + /// /// Adds contact information to the user's account. class Post3PIDsJob : public BaseJob { @@ -100,9 +100,9 @@ namespace QMatrixClient // Construction/destruction /*! Adds contact information to the user's account. - * \param threePidCreds + * \param threePidCreds * The third party credentials to associate with the account. - * \param bind + * \param bind * Whether the homeserver should also bind this third party * identifier to the account's Matrix ID with the passed identity * server. Default: ``false``. @@ -111,7 +111,7 @@ namespace QMatrixClient }; /// Requests a validation token be sent to the given email address for the purpose of adding an email address to an account - /// + /// /// Proxies the identity server API ``validate/email/requestToken``, but /// first checks that the given email address is **not** already associated /// with an account on this Home Server. This API should be used to request @@ -134,7 +134,7 @@ namespace QMatrixClient }; /// Requests a validation token be sent to the given email address for the purpose of adding a phone number to an account. - /// + /// /// Proxies the identity server API ``validate/msisdn/requestToken``, but /// first checks that the given phone number is **not** already associated /// with an account on this Home Server. This API should be used to request |