Safe Haskell | None |
---|---|
Language | Haskell2010 |
The repo watching API as described on https://developer.github.com/v3/activity/watching/.
- watchersFor :: Name GithubOwner -> Name Repo -> IO (Either Error (Vector GithubOwner))
- watchersFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector GithubOwner))
- watchersForR :: Name GithubOwner -> Name Repo -> Maybe Count -> GithubRequest k (Vector GithubOwner)
- reposWatchedBy :: Name GithubOwner -> IO (Either Error (Vector Repo))
- reposWatchedBy' :: Maybe GithubAuth -> Name GithubOwner -> IO (Either Error (Vector Repo))
- reposWatchedByR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector Repo)
- module Github.Data
Documentation
watchersFor :: Name GithubOwner -> Name Repo -> IO (Either Error (Vector GithubOwner)) Source
The list of users that are watching the specified Github repo.
watchersFor "thoughtbot" "paperclip"
watchersFor' :: Maybe GithubAuth -> Name GithubOwner -> Name Repo -> IO (Either Error (Vector GithubOwner)) Source
The list of users that are watching the specified Github repo. With authentication
watchersFor' (Just (GithubUser (user, password))) "thoughtbot" "paperclip"
watchersForR :: Name GithubOwner -> Name Repo -> Maybe Count -> GithubRequest k (Vector GithubOwner) Source
List watchers. See https://developer.github.com/v3/activity/watching/#list-watchers
reposWatchedBy :: Name GithubOwner -> IO (Either Error (Vector Repo)) Source
All the public repos watched by the specified user.
reposWatchedBy "croaky"
reposWatchedBy' :: Maybe GithubAuth -> Name GithubOwner -> IO (Either Error (Vector Repo)) Source
All the public repos watched by the specified user. With authentication
reposWatchedBy' (Just (GithubUser (user, password))) "croaky"
reposWatchedByR :: Name GithubOwner -> Maybe Count -> GithubRequest k (Vector Repo) Source
List repositories being watched. See https://developer.github.com/v3/activity/watching/#list-repositories-being-watched
module Github.Data