Merge pull request #4579 from matrix-org/t3chguy/create_room_public
Default to public room when creating room from room directory
This commit is contained in:
commit
77e32977dc
3 changed files with 9 additions and 5 deletions
|
@ -30,12 +30,13 @@ export default createReactClass({
|
|||
displayName: 'CreateRoomDialog',
|
||||
propTypes: {
|
||||
onFinished: PropTypes.func.isRequired,
|
||||
defaultPublic: PropTypes.bool,
|
||||
},
|
||||
|
||||
getInitialState() {
|
||||
const config = SdkConfig.get();
|
||||
return {
|
||||
isPublic: false,
|
||||
isPublic: this.props.defaultPublic || false,
|
||||
isEncrypted: true,
|
||||
name: "",
|
||||
topic: "",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue