class Github::Client::Activity::Feeds

def get(*args)

Other tags:
    Api: - public

Parameters:
  • name (String) --

Other tags:
    See: https://developer.github.com/v3/activity/feeds/#list-feeds -
def get(*args)
  arguments(args, required: [:name])
  name = arguments.name
  response = list.body._links[name]
  if response
    params = arguments.params
    params['accept'] = response.type
    get_request(response.href, params)
  end
end