mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-11 06:25:57 +00:00
only auth w/ stored token if there is no query string token
This commit is contained in:
parent
4b00145e4b
commit
fe1a0a6f3b
@ -25,8 +25,6 @@ const qs = require('qs');
|
||||
class AppContainer extends Component {
|
||||
constructor (props) {
|
||||
super(props);
|
||||
|
||||
this.queryStringAuthenticate();
|
||||
}
|
||||
|
||||
queryStringAuthenticate() {
|
||||
@ -39,7 +37,7 @@ class AppContainer extends Component {
|
||||
if (token === this.props.credentials.token && this.props.credentials.host === host) {
|
||||
return;
|
||||
}
|
||||
this.props.authenticate(host, token);
|
||||
return this.props.authenticate(host, token);
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
@ -53,8 +51,10 @@ class AppContainer extends Component {
|
||||
|
||||
componentDidUpdate(){
|
||||
if (this.requireAuthentication()) {
|
||||
if (!this.queryStringAuthenticate()) {
|
||||
this.props.authenticate(this.props.credentials.host, this.props.credentials.token);
|
||||
}
|
||||
}
|
||||
|
||||
if (this.props.credentials.authenticated && !this.props.initialized) {
|
||||
this.props.fetchProcesses();
|
||||
|
Loading…
x
Reference in New Issue
Block a user