diff --git a/src/components/views/groups/GroupRoomTile.js b/src/components/views/groups/GroupRoomTile.js
index 452f862d16..1081890f40 100644
--- a/src/components/views/groups/GroupRoomTile.js
+++ b/src/components/views/groups/GroupRoomTile.js
@@ -49,6 +49,13 @@ const GroupRoomTile = React.createClass({
});
},
+ onDeleteClick: function(e) {
+ e.preventDefault();
+ e.stopPropagation();
+ this.context.matrixClient
+ .removeRoomFromGroup(this.props.groupId, this.props.groupRoom.roomId);
+ },
+
render: function() {
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
@@ -76,6 +83,9 @@ const GroupRoomTile = React.createClass({
{ name }
+
+
+
);
},
diff --git a/src/groups.js b/src/groups.js
index 2ff95f7d65..69871c45e9 100644
--- a/src/groups.js
+++ b/src/groups.js
@@ -24,8 +24,7 @@ export const GroupMemberType = PropTypes.shape({
export const GroupRoomType = PropTypes.shape({
name: PropTypes.string,
- // TODO: API doesn't return this yet
- // roomId: PropTypes.string.isRequired,
+ roomId: PropTypes.string.isRequired,
canonicalAlias: PropTypes.string,
avatarUrl: PropTypes.string,
});
@@ -41,6 +40,7 @@ export function groupMemberFromApiObject(apiObject) {
export function groupRoomFromApiObject(apiObject) {
return {
name: apiObject.name,
+ roomId: apiObject.room_id,
canonicalAlias: apiObject.canonical_alias,
avatarUrl: apiObject.avatar_url,
};