1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

Merge pull request #716 from matrix-org/luke/feature-default-hs

Allow setting the default HS from the query parameter
This commit is contained in:
Luke Barnard
2017-02-21 14:43:36 +00:00
committed by GitHub

View File

@@ -226,6 +226,15 @@ module.exports = React.createClass({
if (this._teamToken) { if (this._teamToken) {
console.info(`Team token set to ${this._teamToken}`); console.info(`Team token set to ${this._teamToken}`);
} }
// Set a default HS with query param `hs_url`
const paramHs = this.props.startingFragmentQueryParams.hs_url;
if (paramHs) {
console.log('Setting register_hs_url ', paramHs);
this.setState({
register_hs_url: paramHs,
});
}
}, },
componentDidMount: function() { componentDidMount: function() {