Gabriel Gularte

Results 4 issues of Gabriel Gularte

**Describe the bug** Models that are OneToOne related are producing an `RelatedObjectDoesNotExist` error using ModelSchema. ``` # models.py class User(models.Model): email = models.EmailField(unique=True) class Account(models.Model): user = models.OneToOneField(settings.AUTH_USER_MODEL, on_delete=models.CASCADE) username...

Hey there, how are you? First of all, what an amazing project and tutorial you did. Really, this is insanely helpfull. Thank you for that! I have a question about...

Issue: https://github.com/python-social-auth/social-core/issues/745 ## Proposed changes Adds a new settings ALLOW_INACTIVE_USERS_LOGIN and then check this setting on the on_complete method before the utils.user_is_active check. ## Types of changes Please check the...

### Expected behaviour We should have a setting to allow inactive users to login normally on `do_complete` method. ### Actual behaviour The `do_complete` method checks `user.is_active` regardless the project allows...