lib/alba/many.rb in alba-1.0.1 vs lib/alba/many.rb in alba-1.1.0

- old
+ new

@@ -4,17 +4,18 @@ # Representing many association class Many < Association # Recursively converts objects into an Array of Hashes # # @param target [Object] the object having an association method + # @param within [Hash] determines what associations to be serialized. If not set, it serializes all associations. # @param params [Hash] user-given Hash for arbitrary data # @return [Array<Hash>] - def to_hash(target, params: {}) + def to_hash(target, within: nil, params: {}) @object = target.public_send(@name) @object = @condition.call(@object, params) if @condition return if @object.nil? @resource = constantize(@resource) - @object.map { |o| @resource.new(o, params: params).to_hash } + @object.map { |o| @resource.new(o, params: params, within: within).to_hash } end end end