Sha256: f003160c08053442602961de81e231aefc6d1f050f891f09a39625c6c5d14e20

Contents?: true

Size: 528 Bytes

Versions: 1

Compression:

Stored size: 528 Bytes

Contents

module TrackerApi
  module Endpoints
    class Tasks
      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}/tasks", params: params)
        raise TrackerApi::Errors::UnexpectedData, 'Array of tasks expected' unless data.is_a? Array

        data.map do |task|
          Resources::Task.new({ story_id: story_id }.merge(task))
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tracker_api-0.2.10 lib/tracker_api/endpoints/tasks.rb