Sha256: 213d5f8f28eac07ca7bcef7cc94d300eee1345b051b9a12a5665c17cb5fd9744
Contents?: true
Size: 524 Bytes
Versions: 14
Compression:
Stored size: 524 Bytes
Contents
module TrackerApi module Endpoints class Webhooks attr_accessor :client def initialize(client) @client = client end def get(project_id, params={}) data = client.paginate("/projects/#{project_id}/webhooks", params: params) raise Errors::UnexpectedData, 'Array of webhooks expected' unless data.is_a? Array data.map do |webhook| Resources::Webhook.new({ client: client, project_id: project_id }.merge(webhook)) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems