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/report_content.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/report_content.h')
-rw-r--r-- | lib/csapi/report_content.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/csapi/report_content.h b/lib/csapi/report_content.h index aa5f8a6b..a20c6838 100644 --- a/lib/csapi/report_content.h +++ b/lib/csapi/report_content.h @@ -13,21 +13,21 @@ namespace QMatrixClient // Operations /// Reports an event as inappropriate. - /// + /// /// Reports an event as inappropriate to the server, which may then notify /// the appropriate people. class ReportContentJob : public BaseJob { public: /*! Reports an event as inappropriate. - * \param roomId + * \param roomId * The room in which the event being reported is located. - * \param eventId + * \param eventId * The event to report. - * \param score + * \param score * The score to rate this content as where -100 is most offensive * and 0 is inoffensive. - * \param reason + * \param reason * The reason the content is being reported. May be blank. */ explicit ReportContentJob(const QString& roomId, const QString& eventId, int score, const QString& reason); |