License | BSD-3-Clause |
---|---|
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Safe Haskell | None |
Language | Haskell2010 |
The events API as described on https://developer.github.com/v3/activity/events/.
Synopsis
- repositoryEventsR :: Name Owner -> Name Repo -> FetchCount -> Request RO (Vector Event)
- userEventsR :: Name User -> FetchCount -> Request RO (Vector Event)
- module GitHub.Data
Events
repositoryEventsR :: Name Owner -> Name Repo -> FetchCount -> Request RO (Vector Event) Source #
List repository events. See https://developer.github.com/v3/activity/events/#list-repository-events
userEventsR :: Name User -> FetchCount -> Request RO (Vector Event) Source #
List user public events. See https://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user
module GitHub.Data