class Assembla::Client::Spaces::Ssh::Actions::Launches

Public Instance Methods

list(*args) { |el| ... } click to toggle source

@example api.spaces.ssh.actions.launches.list ‘project1’, ‘action-id’

# File lib/assembla_api/client/spaces/ssh/actions/launches.rb, line 6
def list(*args)
  arguments(args, required: [:space, :id])

  response = get_request("/spaces/#{arguments.space}/ssh/actions/#{arguments.id}/launches", arguments.params)
  return response unless block_given?
  response.each { |el| yield el }
end