-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add SSO functionality #282
Conversation
]), | ||
t.if( | ||
(vm) => vm.error, | ||
t.createTemplate((t) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
heads up I've removed createTemplate
in #280, you can now just do t.if(vm => vm.condition, t => t.div())
…uest the loginFlows" This reverts commit 192232c.
- Use SessionLoadView inside LoginViewModal to load login flows - add new LoadStatus in session container to indecates in login flows loaded - use the new state to show a consistent label into sessioLoadView
* @param {String} homeServer - the homeserver url | ||
*/ | ||
_requestLoginFlows (homeServer) { | ||
this._loadViewModel = this.track(new SessionLoadViewModel({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Loading the login flows should not set the load view model. The load view model is for once you are logging in, it show "fetching your conversations from the server", etc ... It would be nice to have a spinner though, so you may want to set a queryingHomeserver
flag or something.
No description provided.