Issues/6317 empty google login (#6318)

* added Login property to google_oauth model

* fixed spacing

* fixed google_oauth syntax error, missing comma before newline

* set noexpandtab for commit
This commit is contained in:
Eric Uldall 2016-10-18 22:43:32 -07:00 committed by Torkel Ödegaard
parent d1eceedf55
commit 9468ddeed5

View File

@ -46,5 +46,6 @@ func (s *SocialGoogle) UserInfo(client *http.Client) (*BasicUserInfo, error) {
return &BasicUserInfo{
Name: data.Name,
Email: data.Email,
Login: data.Email,
}, nil
}