Merge pull request #160 from gazpachoking/github_auth_email

Use github's anonymous email when github auth user has private email
This commit is contained in:
Chase Sterling 2016-07-26 16:00:46 -04:00 提交者 GitHub
當前提交 065a8c3327
共有 1 個檔案被更改,包括 3 行新增1 行删除

查看文件

@ -40,7 +40,7 @@ providers = {
'field_map': {
'id': 'id',
'username': 'login',
'email': 'email'
'email': lambda(data): data.get('email') or data['login'] + '@users.noreply.github.com'
},
'token_name': 'access_token'
},
@ -118,6 +118,8 @@ class User(BaseUser):
def get_value(d, key):
if isinstance(key, basestring):
return d.get(key)
elif callable(key):
return key(d)
# key should be list here
val = d.get(key.pop(0))
if len(key) == 0: