Method: ApiClient#fetch_deployments

Defined in:
lib/uffizzi/clients/api/api_client.rb

#fetch_deployments(server, project_slug, filter) ⇒ Object



203
204
205
206
207
208
# File 'lib/uffizzi/clients/api/api_client.rb', line 203

def fetch_deployments(server, project_slug, filter)
  uri = deployments_uri(server, project_slug, filter)
  response = http_client.make_get_request(uri)

  build_response(response)
end