* added Login property to google_oauth model * fixed spacing * fixed google_oauth syntax error, missing comma before newline * set noexpandtab for commit
@@ -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
}