Add user list to groups

This commit is contained in:
David Baker 2017-07-25 15:56:16 +01:00
parent b589fcc3b0
commit c2034d5335
22 changed files with 287 additions and 44 deletions

View file

@ -227,6 +227,7 @@ export default React.createClass({
const HomePage = sdk.getComponent('structures.HomePage');
const GroupView = sdk.getComponent('structures.GroupView');
const MyGroups = sdk.getComponent('structures.MyGroups');
const GroupMemberList = sdk.getComponent('groups.GroupMemberList');
const MatrixToolbar = sdk.getComponent('globals.MatrixToolbar');
const NewVersionBar = sdk.getComponent('globals.NewVersionBar');
const UpdateCheckBar = sdk.getComponent('globals.UpdateCheckBar');
@ -307,6 +308,7 @@ export default React.createClass({
page_element = <GroupView
groupId={this.props.currentGroupId}
/>;
right_panel = <RightPanel groupId={this.props.currentGroupId} opacity={this.props.rightOpacity} />;
break;
}