Skip to content

Commit

Permalink
Add in URL of user's profile; Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
tmilewski committed Oct 10, 2013
1 parent 5f23048 commit 6a491e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions lib/omniauth/strategies/venmo.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
require 'omniauth-oauth2'

# access_feed, access_profile, access_friends, make_payments

module OmniAuth
module Strategies
class Venmo < OmniAuth::Strategies::OAuth2
Expand All @@ -27,7 +25,7 @@ class Venmo < OmniAuth::Strategies::OAuth2
'image' => raw_info['picture'],
'balance' => raw_info['balance'],
'urls' => {
'profile' => nil # TODO: Fill in when Venmo is back online.
'profile' => "https://venmo.com/#{raw_info['username']}"
}
})
end
Expand Down
2 changes: 1 addition & 1 deletion lib/omniauth/venmo/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module OmniAuth
module Venmo
VERSION = "1.0.0"
VERSION = "1.0.1"
end
end

0 comments on commit 6a491e0

Please sign in to comment.