Module: Feedlr::Gateway::Profile
- Included in:
- Client
- Defined in:
- lib/feedlr/gateway/profile.rb
Overview
Profile API
Instance Method Summary collapse
-
#update_profile(profile) ⇒ Feedlr::Base
Update the profile of the user.
-
#user_profile ⇒ Feedlr::Base
Get the profile of the user.
Instance Method Details
#update_profile(profile) ⇒ Feedlr::Base
Update the profile of the user
20 21 22 |
# File 'lib/feedlr/gateway/profile.rb', line 20 def update_profile(profile) build_object(:post , '/profile' , profile) end |
#user_profile ⇒ Feedlr::Base
Get the profile of the user
11 12 13 |
# File 'lib/feedlr/gateway/profile.rb', line 11 def user_profile build_object(:get , '/profile') end |