lib/harvesting/models/time_entries.rb in harvesting-0.3.0 vs lib/harvesting/models/time_entries.rb in harvesting-0.4.0
- old
+ new
@@ -3,10 +3,10 @@
class TimeEntries < HarvestRecordCollection
def initialize(attrs, query_opts = {}, opts = {})
super(attrs.reject {|k,v| k == "time_entries" }, query_opts, opts)
@entries = attrs["time_entries"].map do |entry|
- TimeEntry.new(entry, client: opts[:client])
+ TimeEntry.new(entry, harvest_client: opts[:harvest_client])
end
end
def fetch_next_page
@entries += harvest_client.time_entries(next_page_query_opts).entries