Skip to content
Snippets Groups Projects
Commit 9ff9caeb authored by Kegan Dougal's avatar Kegan Dougal
Browse files

webclient: Updated to use /rooms/$roomid/[invite|join|leave]

parent 5c0be8fd
Branches
Tags
No related merge requests found
...@@ -115,7 +115,7 @@ angular.module('matrixService', []) ...@@ -115,7 +115,7 @@ angular.module('matrixService', [])
// Joins a room // Joins a room
join: function(room_id) { join: function(room_id) {
return this.membershipChange(room_id, config.user_id, "join"); return this.membershipChange(room_id, undefined, "join");
}, },
joinAlias: function(room_alias) { joinAlias: function(room_alias) {
...@@ -134,18 +134,22 @@ angular.module('matrixService', []) ...@@ -134,18 +134,22 @@ angular.module('matrixService', [])
// Leaves a room // Leaves a room
leave: function(room_id) { leave: function(room_id) {
return this.membershipChange(room_id, config.user_id, "leave"); return this.membershipChange(room_id, undefined, "leave");
}, },
membershipChange: function(room_id, user_id, membershipValue) { membershipChange: function(room_id, user_id, membershipValue) {
// The REST path spec // The REST path spec
var path = "/rooms/$room_id/state/m.room.member/$user_id"; var path = "/rooms/$room_id/$membership";
path = path.replace("$room_id", encodeURIComponent(room_id)); path = path.replace("$room_id", encodeURIComponent(room_id));
path = path.replace("$user_id", encodeURIComponent(user_id)); path = path.replace("$membership", encodeURIComponent(membershipValue));
return doRequest("PUT", path, undefined, { var data = {};
membership: membershipValue if (user_id !== undefined) {
}); data = { user_id: user_id };
}
// TODO: Use PUT with transaction IDs
return doRequest("POST", path, undefined, data);
}, },
// Retrieves the room ID corresponding to a room alias // Retrieves the room ID corresponding to a room alias
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment