Module: Tr3llo::API::User
Instance Method Summary collapse
Instance Method Details
#find(user_id) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/3llo/api/user.rb', line 6 def find(user_id) url = "/members/#{user_id}" JSON.parse( client.get( url, key: key, token: token ), symbolize_names: true ) end |