-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
feat(authentication): add localSubject and subject as authentication options #14554
feat(authentication): add localSubject and subject as authentication options #14554
Conversation
pendingSubjectChange: undefined, | ||
room, | ||
subject: undefined | ||
room | ||
}); |
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.
Why do you drop these? Isn't this rest of state when room changes in mobile? Especially the pendingSubjectChange.
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.
SET_ROOM here is triggered when we get back to the mobile app, joining the conference, after external authentication is complete. We don't want to set all of these to undefined, because if we do that subject and localSubject will be reset.
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.
What about pendingSubjectChange?
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.
Same thing.
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.
What if there is no auth and a user joins a different meeting? That's the problem that code tries to solve.
You need to update config.js |
No description provided.