Safe Haskell | None |
---|---|
Language | Haskell98 |
The repo starring API as described on http://developer.github.com/v3/repos/starring/.
- stargazersFor :: Maybe GithubAuth -> String -> String -> IO (Either Error [GithubOwner])
- reposStarredBy :: Maybe GithubAuth -> String -> IO (Either Error [Repo])
- myStarred :: GithubAuth -> IO (Either Error [Repo])
- module Github.Data
Documentation
stargazersFor :: Maybe GithubAuth -> String -> String -> IO (Either Error [GithubOwner]) Source
The list of users that have starred the specified Github repo.
userInfoFor' Nothing "mike-burns"
reposStarredBy :: Maybe GithubAuth -> String -> IO (Either Error [Repo]) Source
All the public repos starred by the specified user.
reposStarredBy Nothing "croaky"
myStarred :: GithubAuth -> IO (Either Error [Repo]) Source
All the repos starred by the authenticated user.
module Github.Data