forked from p15670423/monkey
cc: Remove setNoAuth() fron RegisterPage.js
This commit is contained in:
parent
3e453e8b2c
commit
6937a6b81a
|
@ -24,30 +24,6 @@ class RegisterPageComponent extends React.Component {
|
|||
});
|
||||
};
|
||||
|
||||
setNoAuth = () => {
|
||||
let options = {};
|
||||
options['headers'] = {
|
||||
'Accept': 'application/json',
|
||||
'Content-Type': 'application/json'
|
||||
};
|
||||
options['method'] = 'PATCH';
|
||||
options['body'] = JSON.stringify({'server_config': 'standard'});
|
||||
|
||||
return fetch(this.NO_AUTH_API_ENDPOINT, options)
|
||||
.then(res => {
|
||||
if (res.status === 200) {
|
||||
this.auth.attemptNoAuthLogin().then(() => {
|
||||
this.redirectToHome();
|
||||
});
|
||||
} else {
|
||||
this.setState({
|
||||
failed: true,
|
||||
error: res['error']
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
updateUsername = (evt) => {
|
||||
this.username = evt.target.value;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue