Sha256: c831d4de22560c7f3cc010497fcd2873080a3455c7a0437549dd7ba033dca65e
Contents?: true
Size: 886 Bytes
Versions: 20
Compression:
Stored size: 886 Bytes
Contents
require 'intercom/client_collection_proxy' module Intercom module ApiOperations module FindAll def find_all(params) raise BadRequestError, "#find takes a hash as its parameter but you supplied #{params.inspect}" unless params.is_a? Hash collection_name = Utils.resource_class_to_collection_name(collection_class) finder_details = {} if params[:id] && !type_switched_finder?(params) finder_details[:url] = "/#{collection_name}/#{params[:id]}" finder_details[:params] = {} else finder_details[:url] = "/#{collection_name}" finder_details[:params] = params end ClientCollectionProxy.new(collection_name, finder_details: finder_details, client: @client) end private def type_switched_finder?(params) params.include?(:type) end end end end
Version data entries
20 entries across 20 versions & 1 rubygems