class TrackerApi::Endpoints::Tasks

Attributes

client[RW]

Public Class Methods

new(client) click to toggle source
# File lib/tracker_api/endpoints/tasks.rb, line 6
def initialize(client)
  @client = client
end

Public Instance Methods

get(project_id, story_id, params={}) click to toggle source
# File lib/tracker_api/endpoints/tasks.rb, line 10
def get(project_id, story_id, params={})
  data = client.paginate("/projects/#{project_id}/stories/#{story_id}/tasks", params: params)
  raise Errors::UnexpectedData, 'Array of tasks expected' unless data.is_a? Array

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