class Github::Events
def user_org(user_name, org_name, params={})
@github.events.user_org 'user-name', 'org-name' { |event| ... }
@github.events.user_org 'user-name', 'org-name'
@github = Github.new
= Examples
as the user to view this.
This is the user’s organization dashboard. You must be authenticated
List all events for an organization
def user_org(user_name, org_name, params={}) _validate_presence_of user_name, org_name _normalize_params_keys(params) response = get("/users/#{user_name}/events/orgs/#{org_name}", params) return response unless block_given? response.each { |el| yield el } end