You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
Implement API to add users to group summaries (#543)
(and call it addUserToGroupSummary)
This commit is contained in:
@@ -476,6 +476,23 @@ MatrixBaseApis.prototype.removeUserFromGroup = function(groupId, userId) {
|
|||||||
return this._http.authedRequest(undefined, "PUT", path, undefined, {});
|
return this._http.authedRequest(undefined, "PUT", path, undefined, {});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {string} groupId
|
||||||
|
* @param {string} userId
|
||||||
|
* @param {string} roleId Optional.
|
||||||
|
* @return {module:client.Promise} Resolves: Empty object
|
||||||
|
* @return {module:http-api.MatrixError} Rejects: with an error response.
|
||||||
|
*/
|
||||||
|
MatrixBaseApis.prototype.addUserToGroupSummary = function(groupId, userId, roleId) {
|
||||||
|
const path = utils.encodeUri(
|
||||||
|
roleId ?
|
||||||
|
"/groups/$groupId/summary/$roleId/users/$userId" :
|
||||||
|
"/groups/$groupId/summary/users/$userId",
|
||||||
|
{$groupId: groupId, $roleId: roleId, $userId: userId},
|
||||||
|
);
|
||||||
|
return this._http.authedRequest(undefined, "PUT", path, undefined, {});
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {string} groupId
|
* @param {string} groupId
|
||||||
* @return {module:client.Promise} Resolves: Empty object
|
* @return {module:client.Promise} Resolves: Empty object
|
||||||
|
|||||||
Reference in New Issue
Block a user