lib/tracker_api/endpoints/comments.rb in tracker_api-0.2.9 vs lib/tracker_api/endpoints/comments.rb in tracker_api-0.2.10

- old
+ new

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