Class: TrackerApi::Endpoints::Tasks

Inherits:
Object
  • Object
show all
Defined in:
lib/tracker_api/endpoints/tasks.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client) ⇒ Tasks

Returns a new instance of Tasks.



6
7
8
# File 'lib/tracker_api/endpoints/tasks.rb', line 6

def initialize(client)
  @client = client
end

Instance Attribute Details

#clientObject

Returns the value of attribute client.



4
5
6
# File 'lib/tracker_api/endpoints/tasks.rb', line 4

def client
  @client
end

Instance Method Details

#get(project_id, story_id, params = {}) ⇒ Object



10
11
12
13
14
15
16
17
# 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 TrackerApi::Errors::UnexpectedData, 'Array of tasks expected' unless data.is_a? Array

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