Safe Haskell | None |
---|
Github.Repos.Watching
Description
The repo watching API as described on http://developer.github.com/v3/repos/watching/.
- watchersFor :: String -> String -> IO (Either Error [GithubOwner])
- reposWatchedBy :: String -> IO (Either Error [Repo])
- module Github.Data
Documentation
watchersFor :: String -> String -> IO (Either Error [GithubOwner])Source
The list of users that are watching the specified Github repo.
watchersFor "thoughtbot" "paperclip"
reposWatchedBy :: String -> IO (Either Error [Repo])Source
All the public repos watched by the specified user.
reposWatchedBy "croaky"
module Github.Data