Sha256: 5c19f3cb8b305d97ef0321f236ceb6fda0960df9159c9a2f629113de8325bffb
Contents?: true
Size: 490 Bytes
Versions: 23
Compression:
Stored size: 490 Bytes
Contents
module TrackerApi module Endpoints class Epics attr_accessor :client def initialize(client) @client = client end def get(project_id, params={}) data = client.paginate("/projects/#{project_id}/epics", params: params) raise Errors::UnexpectedData, 'Array of epics expected' unless data.is_a? Array data.map do |epic| Resources::Epic.new({ project_id: project_id }.merge(epic)) end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems
Version | Path |
---|---|
tracker_api-1.0.0 | lib/tracker_api/endpoints/epics.rb |
tracker_api-0.2.12 | lib/tracker_api/endpoints/epics.rb |
tracker_api-0.2.11 | lib/tracker_api/endpoints/epics.rb |