mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-15 11:41:30 +03:00
allow passing initial is_url like hs_url in query params
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
fe3850d61f
commit
923de17b91
1 changed files with 8 additions and 0 deletions
|
@ -282,6 +282,14 @@ export default React.createClass({
|
||||||
register_hs_url: paramHs,
|
register_hs_url: paramHs,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
// Set a default IS with query param `is_url`
|
||||||
|
const paramIs = this.props.startingFragmentQueryParams.is_url;
|
||||||
|
if (paramIs) {
|
||||||
|
console.log('Setting register_is_url ', paramIs);
|
||||||
|
this.setState({
|
||||||
|
register_is_url: paramIs,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// a thing to call showScreen with once login completes. this is kept
|
// a thing to call showScreen with once login completes. this is kept
|
||||||
// outside this.state because updating it should never trigger a
|
// outside this.state because updating it should never trigger a
|
||||||
|
|
Loading…
Reference in a new issue