View Source Tentacat.Users.Events (Tentacat v2.4.0)
Summary
Functions
List events performed by a user.
List public events performed by a user.
List public events that a user has received.
List events for an organization.
Functions
@spec list(Tentacat.Client.t(), binary()) :: Tentacat.response()
List events performed by a user.
Example
Tentacat.Users.Events.list "bastos"
Tentacat.Users.Events.list client, "bastos"
More info at: https://developer.github.com/v3/activity/events/#list-events-performed-by-a-user
@spec list_public(Tentacat.Client.t(), binary()) :: Tentacat.response()
List public events performed by a user.
Example
Tentacat.Users.Events.list_public "bastos"
Tentacat.Users.Events.list_public client, "bastos"
More info at: https://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user
@spec list_received_public(Tentacat.Client.t(), binary()) :: Tentacat.response()
List public events that a user has received.
Example
Tentacat.Users.Events.list_received_public client, "bastos"
More info at: https://developer.github.com/v3/activity/events/#list-public-events-that-a-user-has-received
@spec list_user_org(Tentacat.Client.t(), binary(), binary()) :: Tentacat.response()
List events for an organization.
Example
Tentacat.Users.Events.list_user_org client, "bastos", "elixir-lang"
More info at: https://developer.github.com/v3/activity/events/#list-events-for-an-organization