Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
The Event
module exposes GitHub's event API functionality.
for_repo ~user ~repo ()
is a stream of all events for user
/repo
.
val public_events : unit -> Github_t.event Stream.t
public_events ()
is a stream of all public events on GitHub.
for_network ~user ~repo ()
is a stream of all events for the fork network containing user
/repo
.
for_org ~org ()
is a stream of all events for the organization org
.
for_org_member ~user ~org ()
is a stream of org
events which user
receives.
received_by_user ~user ()
is a stream of all of the events user
receives. If the current token is for user
, public and private events will be returned. If not, only public events will be returned.
received_by_user_public ~user ()
is a stream of the public events user
receives.
for_user ~user ()
is a stream of the events generated by user
. If the current token is for user
, public and private events will be returned. If not, only public events will be returned.