diff options
Diffstat (limited to 'lib/csapi/account-data.h')
-rw-r--r-- | lib/csapi/account-data.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/csapi/account-data.h b/lib/csapi/account-data.h index d8ae0aa1..f3656a14 100644 --- a/lib/csapi/account-data.h +++ b/lib/csapi/account-data.h @@ -13,7 +13,7 @@ namespace QMatrixClient // Operations /// Set some account_data for the user. - /// + /// /// Set some account_data for the client. This config is only visible to the user /// that set the account_data. The config will be synced to clients in the /// top-level ``account_data``. @@ -21,20 +21,20 @@ namespace QMatrixClient { public: /*! Set some account_data for the user. - * \param userId + * \param userId * The id of the user to set account_data for. The access token must be * authorized to make requests for this user id. - * \param type + * \param type * The event type of the account_data to set. Custom types should be * namespaced to avoid clashes. - * \param content + * \param content * The content of the account_data */ explicit SetAccountDataJob(const QString& userId, const QString& type, const QJsonObject& content = {}); }; /// Set some account_data for the user. - /// + /// /// Set some account_data for the client on a given room. This config is only /// visible to the user that set the account_data. The config will be synced to /// clients in the per-room ``account_data``. @@ -42,15 +42,15 @@ namespace QMatrixClient { public: /*! Set some account_data for the user. - * \param userId + * \param userId * The id of the user to set account_data for. The access token must be * authorized to make requests for this user id. - * \param roomId + * \param roomId * The id of the room to set account_data on. - * \param type + * \param type * The event type of the account_data to set. Custom types should be * namespaced to avoid clashes. - * \param content + * \param content * The content of the account_data */ explicit SetAccountDataPerRoomJob(const QString& userId, const QString& roomId, const QString& type, const QJsonObject& content = {}); |