diff options
author | elijah <elijah@riseup.net> | 2016-11-08 13:55:08 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2016-11-08 13:55:08 -0800 |
commit | 9d845e98a2a5cda8aaa22f581e28506a627dca43 (patch) | |
tree | 0f4807a7b76a4218c3c86420969a6f993428d715 /ui/app/components/login.js | |
parent | 395612dffea06b52153b7a6acf22ab33207c9346 (diff) |
ui: auto-initialize provider when logging in from the greeter
Diffstat (limited to 'ui/app/components/login.js')
-rw-r--r-- | ui/app/components/login.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/login.js b/ui/app/components/login.js index 9ff6541e..0a47d58c 100644 --- a/ui/app/components/login.js +++ b/ui/app/components/login.js @@ -14,6 +14,7 @@ class Login extends React.Component { static get defaultProps() {return{ rememberAllowed: false, // if set, show remember password checkbox + autoAllowed: false, // if set, allow auto setup of provider domain: null, // if set, only allow this domain address: null, // if set, only allow this username@domain onLogin: null, // callback @@ -391,7 +392,7 @@ class Login extends React.Component { doLogin() { let account = Account.findOrAdd(this.state.username) - account.login(this.state.password).then( + account.login(this.state.password, this.props.autoAllowed).then( account => { this.setState({loading: false}) if (this.props.onLogin) { |