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

Safe HaskellNone
LanguageHaskell2010

Github.Activity.Starring

Description

The repo starring API as described on https://developer.github.com/v3/activity/starring/.

Synopsis

Documentation

stargazersFor :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector GithubOwner)) Source

The list of users that have starred the specified Github repo.

userInfoFor' Nothing "mike-burns"

reposStarredBy :: Maybe GithubAuth -> Name GithubOwner -> IO (Either Error (Vector Repo)) Source

All the public repos starred by the specified user.

reposStarredBy Nothing "croaky"

myStarred :: GithubAuth -> IO (Either Error (Vector Repo)) Source

All the repos starred by the authenticated user.

myStarredR :: Maybe Count -> GithubRequest True (Vector Repo) Source

All the repos starred by the authenticated user.