Fix BB authentication[ci skip]

This commit is contained in:
Valery Sizov 2016-12-14 11:53:29 +02:00
parent e39f024029
commit f20ea1f5cb
1 changed files with 2 additions and 6 deletions

View File

@ -11,10 +11,6 @@ module OmniAuth
token_url: 'https://bitbucket.org/site/oauth2/access_token'
}
def callback_url
full_host + script_name + callback_path
end
uid do
raw_info['username']
end
@ -28,7 +24,7 @@ module OmniAuth
end
def raw_info
@raw_info ||= access_token.get('user').parsed
@raw_info ||= access_token.get('api/2.0/user').parsed
end
def primary_email
@ -37,7 +33,7 @@ module OmniAuth
end
def emails
email_response = access_token.get('user/emails').parsed
email_response = access_token.get('api/2.0/user/emails').parsed
@emails ||= email_response && email_response['values'] || nil
end
end