Sha256: c754d5f25454f2dcc3fd3f04560d6a95234e1b3708e44eaae02375828653c205
Contents?: true
Size: 530 Bytes
Versions: 10
Compression:
Stored size: 530 Bytes
Contents
module TrackerApi module Endpoints class StoryOwners 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}/owners", params: params) raise Errors::UnexpectedData, 'Array of comments expected' unless data.is_a? Array data.map do |owner| Resources::Person.new({ story_id: story_id }.merge(owner)) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems