Sha256: 39469d67b87b3f872acd3fcaa5299a879f24d6731f67d1b4b4cd85a4da143256

Contents?: true

Size: 891 Bytes

Versions: 16

Compression:

Stored size: 891 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 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))
        end
      end

      def create_with_attachment(project_id, story_id, text, file_attachment)
        comment = {:text => text, :file_attachments => [file_attachment.attributes]}
        data = client.post("/projects/#{project_id}/stories/#{story_id}/comments", params: comment).body

        Resources::Comment.new({ client: client }.merge(data))
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
v2gpti-1.3.5 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.3.4 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.3.3 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.3.2 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.3.1 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.3.0 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.9 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.8 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.7 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.6 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.5 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.4 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.3 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.2 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.1 tracker_api/lib/tracker_api/endpoints/comments.rb
v2gpti-1.2.0 tracker_api/lib/tracker_api/endpoints/comments.rb