settings: in default settings ask for read and write scopes when using OAuth2 authentication

This commit is contained in:
Benjamin Dauvergne 2014-03-31 11:34:37 +02:00
parent 2a1eb70f19
commit ed6c299cab
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ SOCIALACCOUNT_QUERY_EMAIL = True
SOCIALACCOUNT_PROVIDERS = {
'authentic2': {
'URL': 'http://localhost:9000/idp/oauth2/',
'SCOPE': ['read'],
'SCOPE': ['read', 'write'],
},
}
SOCIALACOUNT_AUTO_SIGNUP = True