Sha256: 96afec34751f277a9194ee816ac24214ee1779506100bc5c042c5591068fa1ea
Contents?: true
Size: 529 Bytes
Versions: 19
Compression:
Stored size: 529 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
19 entries across 19 versions & 2 rubygems