Method: TrackerApi::Resources::Project#webhooks

Defined in:
lib/tracker_api/resources/project.rb

#webhooks(params = {}) ⇒ Array[Webhook]

Provides a list of all the webhooks in the project.

Parameters:

  • (defaults to: {})

Returns:

  • epics associated with this project



82
83
84
85
86
87
88
# File 'lib/tracker_api/resources/project.rb', line 82

def webhooks(params={})
  if @webhooks && @webhooks.present?
    @webhooks
  else
    @webhooks = Endpoints::Webhooks.new(client).get(id, params)
  end
end