Tentacat v1.6.0 Tentacat.Issues.Events View Source
Link to this section Summary
Functions
Get a single event on an issue by its id
List events on an issue
List all events on issues for a repository
Link to this section Functions
Link to this function
find(client \\ %Client{}, owner, repo, event_id)
View Source
find(client \\ %Client{}, owner, repo, event_id)
View Source
find(Tentacat.Client.t(), binary(), binary(), binary() | integer()) ::
Tentacat.response()
find(Tentacat.Client.t(), binary(), binary(), binary() | integer()) :: Tentacat.response()
Get a single event on an issue by its id.
Example
Tentacat.Issues.Events.find "elixir-lang", "elixir", 882148
More info at: https://developer.github.com/v3/issues/events/#get-a-single-event
Link to this function
list(client \\ %Client{}, owner, repo, issue_id)
View Source
list(client \\ %Client{}, owner, repo, issue_id)
View Source
list(Tentacat.Client.t(), binary(), binary(), binary() | integer()) ::
Tentacat.response()
list(Tentacat.Client.t(), binary(), binary(), binary() | integer()) :: Tentacat.response()
List events on an issue.
Example
Tentacat.Issues.Events.list "elixir-lang", "elixir", 3970
More info at: https://developer.github.com/v3/issues/events/#list-events-for-an-issue
Link to this function
list_all(client \\ %Client{}, owner, repo)
View Source
list_all(client \\ %Client{}, owner, repo)
View Source
list_all(Tentacat.Client.t(), binary(), binary()) :: Tentacat.response()
list_all(Tentacat.Client.t(), binary(), binary()) :: Tentacat.response()
List all events on issues for a repository.
Example
Tentacat.Issues.Events.list_all "elixir-lang", "elixir"
More info at: https://developer.github.com/v3/issues/events/#list-events-for-a-repository