-
Notifications
You must be signed in to change notification settings - Fork 487
Implemented allowNewEmailAccounts #450
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
Implemented allowNewEmailAccounts #450
Conversation
|
Travis CI fails also on master due to deprecation in FUIAccountSettingsOperation. I've mentioned issue here #125 |
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.
had some small comments, otherwise looks good.
FirebaseAuthUI/FUIAuth.h
Outdated
| /** @property allowNewEmailAccounts | ||
| @brief Whether to allow new user sign, defaults to YES. | ||
| */ | ||
| @property(nonatomic, assign, getter=allowedNewEmailAccounts) BOOL allowNewEmailAccounts; |
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.
I don't think this needs a custom getter name (but if you'd like to keep it, consider renaming to allowsNewEmailAccounts)
FirebaseAuthUI/FUIAuth.m
Outdated
| controller = [[FUIEmailEntryViewController alloc] initWithAuthUI:self]; | ||
| } | ||
| } | ||
| else{ |
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.
nit: space after else
…nto allow_new_email_login
|
Fixed code nits and merged with master to pass TravisCI |
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.
Thanks!
Implemented allow new email accounts, Reference #125