aboutsummaryrefslogtreecommitdiff
path: root/lib/csapi/users.h
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-09-24 19:20:10 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-09-29 21:59:39 +0900
commit4244cee8d5e0f760cccd2b45ad587670573ef03c (patch)
tree4806108543f1402247e6cce1dba987a98d6fe83b /lib/csapi/users.h
parentf5c2e47fa1ab84fdaffe03c30ba973d7dea5ac05 (diff)
downloadlibquotient-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/users.h')
-rw-r--r--lib/csapi/users.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/csapi/users.h b/lib/csapi/users.h
index 3ff10db6..1c223945 100644
--- a/lib/csapi/users.h
+++ b/lib/csapi/users.h
@@ -14,7 +14,7 @@ namespace QMatrixClient
// Operations
/// Searches the user directory.
- ///
+ ///
/// This API performs a server-side search over all users registered on the server.
/// It searches user ID and displayname case-insensitively for users that you share a room with or that are in public rooms.
class SearchUserDirectoryJob : public BaseJob
@@ -37,9 +37,9 @@ namespace QMatrixClient
// Construction/destruction
/*! Searches the user directory.
- * \param searchTerm
+ * \param searchTerm
* The term to search for
- * \param limit
+ * \param limit
* The maximum number of results to return (Defaults to 10).
*/
explicit SearchUserDirectoryJob(const QString& searchTerm, Omittable<int> limit = none);