class ConnectorKit::UserListResponseMapper

Mapper between a HTTParty response and a list of Users

Public Instance Methods

map(data) click to toggle source
# File lib/connector_kit/mappers/user_list_response_mapper.rb, line 6
def map(data)
  data.map { |user| User.new(user) }
end