lib/tracker_api/endpoints/comments.rb in tracker_api-1.4.1 vs lib/tracker_api/endpoints/comments.rb in tracker_api-1.5.0

- old
+ new

@@ -10,11 +10,13 @@ def get(project_id, story_id, params={}) data = client.paginate("/projects/#{project_id}/stories/#{story_id}/comments", params: params) raise Errors::UnexpectedData, 'Array of comments expected' unless data.is_a? Array data.map do |comment| - Resources::Comment.new({ story_id: story_id }.merge(comment)) + Resources::Comment.new({ client: client, + project_id: project_id, + story_id: story_id }.merge(comment)) end end end end -end \ No newline at end of file +end