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:
Michael Telatynski 2020-05-13 10:50:38 +01:00 committed by GitHub
commit 77e32977dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 5 deletions

View file

@ -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: "",