github-0.13.2: Access to the Github API, v3.

Safe HaskellNone
LanguageHaskell2010

Github.Repos.Starring

Description

The repo starring API as described on http://developer.github.com/v3/repos/starring/.

Synopsis

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.