Sha256: 031841a4c6abff9dca10ad19cb204c7691b539ae97f05657b2270d91df19e612
Contents?: true
Size: 556 Bytes
Versions: 6
Compression:
Stored size: 556 Bytes
Contents
module TrackerApi module Endpoints class Blockers attr_accessor :client def initialize(client) @client = client end def get(project_id, story_id, params = {}) data = client.get("/projects/#{project_id}/stories/#{story_id}/blockers", params: params).body raise Errors::UnexpectedData, 'Array of Blockers expected' unless data.is_a? Array data.map do |blocker| Resources::Blocker.new({ client: client, project_id: project_id }.merge(blocker)) end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems