We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2266723 + 5008754 commit 5e4d85bCopy full SHA for 5e4d85b
rest_auth/registration/serializers.py
@@ -60,7 +60,7 @@ def validate(self, attrs):
60
if not adapter_class:
61
raise serializers.ValidationError(_('Define adapter_class in view'))
62
63
- adapter = adapter_class()
+ adapter = adapter_class(request)
64
app = adapter.get_provider().get_app(request)
65
66
# More info on code vs access_token
setup.py
@@ -33,11 +33,11 @@
33
'six>=1.9.0',
34
],
35
extras_require={
36
- 'with_social': ['django-allauth>=0.24.1'],
+ 'with_social': ['django-allauth>=0.25.0'],
37
},
38
tests_require=[
39
'responses>=0.5.0',
40
- 'django-allauth>=0.24.1',
+ 'django-allauth>=0.25.0',
41
42
test_suite='runtests.runtests',
43
include_package_data=True,
0 commit comments