Sha256: 38c9ea53cd8256e41405e3ccf4d25dbd533c7c7a65a1d66d0520b20474b478d6

Contents?: true

Size: 644 Bytes

Versions: 10

Compression:

Stored size: 644 Bytes

Contents

module TrackerApi
  module Endpoints
    class Comments
      attr_accessor :client

      def initialize(client)
        @client = client
      end

      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({ client: client,
                                   project_id: project_id,
                                   story_id: story_id }.merge(comment))
        end
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
tracker_api-1.12.0 lib/tracker_api/endpoints/comments.rb
tracker_api-1.11.0 lib/tracker_api/endpoints/comments.rb
tracker_api-1.10.0 lib/tracker_api/endpoints/comments.rb
tracker_api-1.9.1 lib/tracker_api/endpoints/comments.rb
tracker_api-1.9.0 lib/tracker_api/endpoints/comments.rb
tracker_api-1.8.0 lib/tracker_api/endpoints/comments.rb
tracker_api-1.7.1 lib/tracker_api/endpoints/comments.rb
tracker_api-1.7.0 lib/tracker_api/endpoints/comments.rb
tracker_api-1.6.0 lib/tracker_api/endpoints/comments.rb
tracker_api-1.5.0 lib/tracker_api/endpoints/comments.rb